/*
Theme Name: Ovega theme by Nektonik 2025
URI: https://nektonik.hu
Author: Kuzmann Zsóka és Kuzmann Eszter
Author URI: https://nektonik.hu
Description: Ovega WordPress Theme by Nektonik 2025
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nektonik-basic
*/

/* !----------------- */
/* ! GLOBAL */
/* ! ---------------- */

:root {
    --clr-dark: rgb(43, 30, 62);
    --clr-light: rgb(241, 238, 247);
    --clr-accent-1: rgb(108, 75, 155);
    --clr-accent-2: rgb(79, 55, 113);
}

body {
    font-family: "Epilogue", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    color: var(--clr-dark);
    max-width: 2000px;
    margin-inline: auto;
}

.wrapper {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
}

.wrapper-narrow {
    width: min(100% - 2rem, 800px);
    margin-inline: auto;
}

.flow > * + * {
    margin-top: var(--flow-space, 2em);
}

.post-padding {
    padding-block: 30px 50px;
}

@media (min-width: 900px) {
    .post-padding {
        padding-block: 100px 120px;
    }
}

.bg-light {
    background-color: var(--clr-light);
}

.bg-accent-1 {
    background-color: var(--clr-accent-1);
}

.shadow {
    -webkit-box-shadow: 0px 3px 5px -1px rgba(108, 75, 175, 0.2),
        0px 6px 10px 0px rgba(108, 75, 175, 0.14);
    box-shadow: 0px 3px 5px -1px rgba(108, 75, 175, 0.2),
        0px 6px 10px 0px rgba(108, 75, 175, 0.14);
}

::-moz-selection {
    background: var(--clr-accent-1);
    color: #ffffff;
}

::selection {
    background: var(--clr-accent-1);
    color: #ffffff;
}

/* ! címek mögötti vonal */

.title-decoration {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5em;
}

.title-decoration-small,
.title-decoration-big,
.title-decoration-white {
    position: relative;
    display: inline-block;
}

.title-decoration-small::before,
.title-decoration-big::before,
.title-decoration-white::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--clr-accent-1);
    bottom: 0;
    right: 0;
}

.title-decoration-white::before {
    background: #ffffff;
}

.title-decoration-small::after,
.title-decoration-big::after,
.title-decoration-white::after {
    position: absolute;
    content: "";
    display: block;
    background: var(--clr-accent-1);
    right: 0;
}

.title-decoration-white::after {
    background: #ffffff;
}

.title-decoration-small::after {
    width: 25px;
    height: 7px;
    bottom: -6px;
}

.title-decoration-big::after,
.title-decoration-white::after {
    width: 25px;
    height: 10px;
    bottom: -9px;
}

@media (min-width: 600px) {
    .title-decoration-big::after,
    .title-decoration-white::after {
        width: 75px;
    }
}

/* ! pöttyös háttérsáv */

@media (min-width: 1500px) {
    .bg-dotted {
        position: relative;
    }
    .bg-dotted::before,
    .bg-dotted::after {
        position: absolute;
        content: "";
        display: block;
        width: 7%;
        height: 100%;
        background-image: url(img/dot.png);
        top: 0;
        /* z-index: -1; */
    }
    .bg-dotted::before {
        left: 0;
    }
    .bg-dotted::after {
        right: 0;
    }
}

/* ! buttons and links */

.button,
.wp-block-button a {
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    padding: 0.6em 1.2em 0.4em;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-accent-1,
.wp-block-button a {
    color: white;
    background: var(--clr-accent-1);
    border: 1px solid transparent;
}

.button-accent-2 {
    color: white;
    background: var(--clr-accent-2);
    border: 1px solid transparent;
}

.button-light {
    color: var(--clr-accent-2);
    background: var(--clr-light);
    border: 1px solid var(--clr-accent-2);
}

.button-accent-1:hover,
.button-accent-2:hover,
.wp-block-button a:hover,
.button-light:hover {
    background: #ffffff;
    color: var(--clr-accent-1);
    border: 1px solid var(--clr-accent-1);
}

/* !----------------- */
/* ! TYPOGRAPHY */
/* ! ---------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.25rem;
}

.fp-h2 {
    color: var(--clr-accent-1);
    font-weight: 800;
    font-size: 1.5rem;
}

h3 {
    font-size: 1.125rem;
}

aside h4 {
    font-size: 1.125rem;
}

footer h5 {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

@media (min-width: 600px) {
    .fp-h2 {
        font-size: 2rem;
    }
}

@media (min-width: 900px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .fp-h2 {
        font-size: 2.75rem;
    }
    h3 {
        font-size: 1.225rem;
    }
    aside h4 {
        font-size: 1.5rem;
    }
}

/* !----------------- */
/* ! HEADER */
/* ! ---------------- */

#top-header {
    position: relative;
    background-color: var(--light);
    z-index: 100;
    border-bottom: 1px solid var(--clr-accent-1);
}

/* TOP-DATA */

#top-data {
    background-color: var(--clr-accent-1);
    font-size: 1rem;
    padding: 0.25rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#top-data svg {
    display: none;
}

#top-data a {
    color: #ffffff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 450px) {
    #top-data svg {
        display: block;
        width: 1rem;
        height: 1rem;
        margin-right: 0.4rem;
    }
}

@media (min-width: 600px) {
    #top-data {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    #top-data > * {
        margin-left: 1rem;
    }
}

/* TOP-NAV */

#top-nav {
    padding: 0.5rem 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 80px 5fr 30px;
    background: #ffffff;
}

/* grid */
.nav-logo {
    grid-column: 1 / 2;
}

.woo-navigation {
    grid-column: 2 / 3;
}

.main-navigation {
    grid-column: 3 / 4;
}

.top-menu-mobile-search {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
}

.woo-navigation > *:first-child {
    display: none;
}

@media (min-width: 860px) {
    .top-menu-mobile-search {
        display: none;
    }
    .woo-navigation > *:first-child {
        display: block;
    }
}

@media (min-width: 1000px) {
    #top-nav {
        grid-template-columns: 170px 1fr;
    }
    .nav-logo {
        grid-row: 1 / 3;
    }
    .woo-navigation {
        grid-row: 2 / 3;
    }
    .main-navigation {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
}

/* nav logo */
.nav-logo {
    background: url(img/ovega-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    width: 100%;
    height: auto;
    display: inline-block;
}

/* woo-navigation */
.woo-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.woo-navigation .search-form {
    max-width: 250px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.woo-navigation a {
    margin-left: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0.4rem;
    text-decoration: none;
}

.woo-navigation svg {
    display: inline-block;
    width: 1rem;
    height: 1rem;
}

.woo-navigation svg path {
    fill: var(--clr-accent-1);
}

.woo-navigation span {
    display: none;
}

.woo-navigation .menu-cart-number {
    position: relative;
}

.woo-navigation
.menu-cart-number[productnumber]:not(
.menu-cart-number[productnumber="0"]
)::after {
    visibility: visible;
    position: absolute;
    content: attr(productnumber);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--clr-accent-1);
    color: #ffffff;
    padding: 5px;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    top: 7px;
    left: -2px;
    font-size: 12px;
}

@media (min-width: 700px) {
    .woo-navigation span {
        display: inline;
        color: var(--clr-accent-1);
    }

    .woo-navigation svg {
        margin-right: 0.3rem;
    }
}

@media (min-width: 1000px) {
    .woo-navigation {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

/* main-navigation */

.main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--clr-accent-1);
}

.main-nav a {
    color: var(--clr-accent-1);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    padding: 0.4rem 0.8rem;
    display: block;
}

.main-nav a:hover,
.current_page_item,
.current_page_parent:not(.search .current_page_parent),
.woocommerce-MyAccount-navigation .is-active {
    text-decoration: underline;
    text-underline-offset: 10px;
    -webkit-text-decoration-color: var(--clr-accent-1);
    text-decoration-color: var(--clr-accent-1);
}

.main-nav ul {
    padding: 0;
    margin: 0;
}

.main-nav ul.sub-menu {
    display: none;
}

.main-nav li {
    list-style-type: none;
    width: 100%;
}

/* -- hamburger -- */

/* checkbox nem jelenik meg */
#nav-toggle {
    display: none;
}

/* checkbox label-je a hamburger ikon */
.nav-toggle-label {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--clr-accent-1);
    position: relative;
    border-radius: 3px;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* main-nav nem latszik */
.main-nav {
    position: absolute;
    text-align: left;
    top: 100%;
    right: 0;
    width: 100%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform 400ms ease-in-out;
    transition: -webkit-transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    z-index: 10;
}

@media (min-width: 550px) {
    .main-nav {
        width: 40%;
    }
}

/* hamburger lenyitaskor animacio */
#nav-toggle:checked ~ .main-nav {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

#nav-toggle:checked ~ .main-nav a {
    opacity: 1;
    -webkit-transition: opacity 250ms ease-in-out 250ms;
    transition: opacity 250ms ease-in-out 250ms;
}

.top-menu-mobile-search .search-form {
    max-width: 80%;
    margin: 0 auto;
}

/* teljes menu latszik */
@media screen and (min-width: 1000px) {
    #nav-toggle {
        display: none;
    }
    .nav-toggle-label {
        display: none;
    }
    .main-nav {
        -webkit-transform: none;
        transform: none;
        position: static;
        width: auto;
        display: block;
        border-bottom: 0;
    }
    .main-nav a {
        opacity: 1;
        padding: 0;
        margin: 0.4em 0 0 2.5em;
    }
    .main-nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/* !----------------- */
/* ! FRONT PAGE */
/* ! ---------------- */

.fp-main {
    padding-top: 30px;
}

.professional,
.fp-loan,
.fp-latest-blog-posts {
    position: relative;
    z-index: 10;
}

@media (min-width: 900px) {
    .fp-main {
        padding-top: 100px;
    }
}

/* ! Hero */

.hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2em;
    margin-bottom: 2em;
}

.hero-text,
.hero-img,
.hero-details {
    grid-column: 1 / -1;
}

.hero-img {
    justify-self: center;
}

.hero-img img {
    max-width: 80%;
    margin-inline: auto;
}

.hero-first-line {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.4em;
    text-align: center;
}

.hero h1 {
    color: var(--clr-accent-1);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5em;
    text-align: center;
}

.hero-subtitle {
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
}

.hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1em;
}

@media (min-width: 600px) {
    .hero-first-line {
        font-size: 1.125rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 900px) {
    .hero {
        gap: 2em 4em;
    }
    .hero-text {
        grid-column: 2 / 3;
    }
    .hero-img {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .hero-details {
        grid-column: 2 / 3;
    }
    .hero-first-line {
        text-align: left;
    }
    .hero h1 {
        font-size: 3.375rem;
        text-align: left;
    }
    .hero-subtitle {
        padding-bottom: 1.5em;
        position: relative;
        text-align: left;
    }
    .hero-subtitle::before {
        position: absolute;
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--clr-accent-1);
    }
    .hero-img img {
        max-width: 100%;
    }
}

@media (min-width: 1250px) {
    .hero-img {
        position: relative;
    }
    .hero-img::before,
    .hero-img::after {
        position: absolute;
        content: "";
        display: block;
        background-image: url(img/dot.png);
    }
    .hero-img::before {
        width: 50%;
        height: 50%;
        top: -18px;
        left: -15px;
        z-index: -1;
    }
    .hero-img::after {
        position: absolute;
        content: "";
        display: block;
        width: 200px;
        height: 200px;
        background-image: url(img/dot.png);
        bottom: 0;
        right: -40px;
    }
}

/* ! Partnerek logói */

.partners {
    padding-block: 1.5em 3em;
}

.partners .title-decoration {
    margin-bottom: 3em;
}

.partner-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.partner-thumb img {
    max-width: 150px;
    height: auto;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.partner-thumb:hover img {
   opacity: 0.7;
}

@media (min-width: 900px) {
    .partners {
        padding-block: 3em 4em;
    }
    .partner-logos {
        gap: 4rem 3rem;
    }
}

/* ! Szakembert is keres?, Segítsünk választani?, Nincs a listában? és Kamatmentes hitel */

.professional,
.fp-loan {
    padding-block: 2em;
}

.no-search-result {
    padding-block: 2em;
}

.professional .title-decoration,
.no-search-result .title-decoration,
.fp-loan .title-decoration,
.fp-products .title-decoration {
    margin-bottom: 2em;
}

.professional-text,
.help-to-choose-text,
.no-search-result-text,
.fp-loan-text {
    margin-bottom: 2em;
    max-width: 800px;
}

.help-to-choose-text {
    margin-bottom: 3em;
}

@media (min-width: 900px) {
    .professional,
    .no-search-result,
    .fp-loan {
        padding-block: 4em;
    }
}

/* ! Termékek */

.fp-products {
    padding-block: 2em;
}

.fp-products h2 {
    color: #ffffff;
}

.fp-product-cats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5em;
}

.fp-product-cats a {
    color: var(--clr-accent-1);
    background: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    padding: 0.6em 1.2em 0.4em;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fp-product-cats a:hover {
    background: var(--clr-accent-2);
    color: #ffffff;
}

.fp-product-cats a::first-letter {
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .fp-products {
        padding-block: 4em;
    }
    .fp-products .title-decoration {
        margin-bottom: 4em;
    }
}

/* ! Elégedett ügyfeleink */

.testimonials {
    padding-block: 3em 4em;
}

.testimonials .title-decoration {
    margin-bottom: 2em;
}

.testimonial {
    background: var(--clr-light);
    padding: 1em;
    border-radius: 5px;
    position: relative;
}

.testimonial::before {
    position: absolute;
    content: "";
    display: block;
    background-image: url(img/dot.png);
    width: 160px;
    height: 120px;
    bottom: -40px;
    right: 0;
}

.testimonials-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3em;
}

.testimonial-name {
    position: relative;
    padding-left: 40px;
}

.testimonial-name::before {
    position: absolute;
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: var(--clr-accent-1);
    top: 12px;
    left: 0;
}

@media (min-width: 900px) {
    .testimonials {
        padding-block: 4em 5em;
    }
    .testimonials-box {
        gap: 4em;
    }
    .testimonial {
        padding: 2em;
    }
    .testimonials .title-decoration {
        margin-bottom: 4em;
    }
}

/* ! Legfrissebb cikkek */

.fp-latest-blog-posts {
    padding-block: 3em;
}

.fp-latest-blog-posts .title-decoration {
    margin-bottom: 2em;
}

.fp-blog-posts-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 1em;
}

.fp-go-to-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3em;
}

@media (min-width: 600px) {
    .fp-blog-posts-box .blog-post-card {
        width: 49%;
    }
}

@media (min-width: 900px) {
    .fp-latest-blog-posts {
        padding-block: 5em;
    }
    .fp-latest-blog-posts .title-decoration {
        margin-bottom: 4em;
    }
    .fp-blog-posts-box .blog-post-card {
        width: 24%;
    }
}

/* !----------------- */
/* ! BLOG */
/* ! ---------------- */

/* ! single.php  */

.grid-wrapper {
    display: grid;
    gap: 2em;
}

.blog-post,
.page-main {
    background: #ffffff;
    padding: 1em 1em 3em;
    margin-bottom: 3em;
    border-radius: 5px;
}

.rank-math-breadcrumb {
    position: relative;
    padding-left: 40px;
}

.rank-math-breadcrumb::before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: var(--clr-accent-1);
    top: 0.7em;
    left: 0;
}

.post-main-image {
    padding-block: 1em 2em;
}

.rank-math-breadcrumb a,
.back-to-blog,
.woocommerce-breadcrumb a {
    text-decoration: none;
    color: var(--clr-accent-1) !important;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.post-text ul li {
    position: relative;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.post-text ul li::before {
    position: absolute;
    content: "";
    left: -1.5em;
    top: 0.5em;
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    background-color: var(--clr-accent-1);
}

.post-text ol {
    margin-left: 1.125rem;
}

.post-text ol li {
    margin-bottom: 1em;
}

.wp-block-quote {
    border-left: 10px solid var(--clr-accent-1);
    padding-left: 2em;
}

.wp-block-quote p,
.wp-block-quote ul,
.wp-block-quote ol {
    font-weight: 500;
    font-size: 1.125rem;
}

.wp-block-quote > * + * {
    margin-top: 1em;
}

.wp-element-caption {
    text-align: center;
    font-size: 1rem;
}

.wp-block-embed-youtube iframe {
    margin-inline: auto;
}

@media (max-width: 600px) {
    .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
        padding-top: 2em;
    }
}

@media (min-width: 900px) {
    .wp-block-quote p {
        font-size: 1.25rem;
    }
    .blog-post,
    .page-main {
        margin-bottom: 5em;
    }
}

/* ! Cikkek kártyái itt: single.php, home.php  */

.related-posts-title {
    margin-bottom: 1.5em;
    color: var(--clr-accent-1);
}

.blog-posts-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 2em;
}

.blog-post-card {
    background: #ffffff;
    padding: 0.5em 0.5em 2em;
    border-radius: 5px;
}

.blog-post-card a {
    text-decoration: none;
    color: var(--clr-accent-1);
}

.post-cats {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-block: 1em;
    margin-right: 1em;
}

.post-cats a {
    margin-right: 1em;
    display: inline-block;
}

.blog-post-title h2,
.blog-post-title h3 {
    color: var(--clr-dark);
    margin-bottom: 1em;
}

.blog-post-read-more {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.blog-post-read-more::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1em;
    width: 30px;
    height: 1px;
    background-color: var(--clr-accent-2);
}

@media (min-width: 600px) {
    .blog-posts-box {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .blog-post-card:not(.fp-latest-blog-posts .blog-post-card) {
        width: 48%;
    }
}

@media (min-width: 900px) {
    .grid-wrapper {
        grid-template-columns: 3fr 1fr;
    }
    .related-posts-title {
        margin-bottom: 2em;
    }
}

/* ! home.php és archive.php  */

.page-title {
    grid-column: 1 / -1;
    /*  color: var(--clr-accent-1);*/
}

.archive-h1::first-letter {
    text-transform: uppercase;
}

.category-description {
    margin-top: 1em;
    max-width: 800px;
}

.pagination {
    text-align: center;
    margin-top: 3em;
    line-height: 2;
}

.pagination > * + * {
    margin-left: 1em;
}

.page-numbers {
    color: var(--clr-accent-1);
    font-weight: 500;
    text-decoration: none;
}

.page-numbers:hover {
    text-decoration: underline;
    text-underline-offset: 10px;
}

.pagination .current {
    text-decoration: underline;
    text-underline-offset: 10px;
}

@media (min-width: 900px) {
    .page-title {
        margin-bottom: 2em;
    }
}

/* !----------------- */
/* ! page.php */
/* ! ----------------- */

.page-main h1 {
    margin-bottom: 1em;
}

@media (min-width: 900px) {
    .page-main {
        padding-top: 2em;
    }
}

/* partnerek oldalai */
.partner-site .wp-block-media-text:first-of-type figure {
	max-width: 150px;
}


/* !----------------- */
/* ! SIDEBAR */
/* ! ----------------- */

aside .title-decoration {
    margin-bottom: 1em;
}

aside a {
    text-decoration: none;
    color: var(--clr-accent-1);
    font-weight: 500;
    display: inline-block;
}

aside a::first-letter {
    text-transform: uppercase;
}

.aside-cats {
    display: grid;
    gap: 0.3em;
}

/* !----------------- */
/* ! SEARCHFORM */
/* ! ----------------- */

.search-form {
    position: relative;
    background: #ffffff;
}

.search-form .search-field {
    /* min-width: 100px; */
    width: 100%;
    /* font-family: "Albert Sans", sans-serif; */
    font-weight: 400;
    /* font-size: smaller; */
    color: var(--clr-accent-1);
    display: inline-block;
    padding: 0.5em;
    border-radius: 5px;
    -webkit-box-shadow: inset 2px 2px 4px rgba(108, 75, 155, 0.25);
    box-shadow: inset 2px 2px 4px rgba(108, 75, 155, 0.25);
}

.search-form input[type="search"]:focus-visible {
    outline: 1px solid var(--clr-accent-1);
}

.search-form .search-submit {
    border: none;
    background-color: transparent;
    padding: 0;
    position: absolute;
    right: 6px;
    top: 14px;
}

.search-form .search-submit svg {
    margin: 0;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    margin-right: 0.3rem;
}

/* !----------------- */
/* ! SEARCH.PHP - keresési eredmények */
/* ! ----------------- */

.all-search-results {
    display: grid;
    gap: 2em;
}

.search-result {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1em;
}

.search-result img {
    border-radius: 5px;
}

.search-result h2 {
    font-size: 1rem;
    margin-bottom: 0.3em;
}

.search-result h2 a {
    text-decoration: none;
    color: var(--clr-dark);
}

.search-result h2 a:hover {
    color: var(--clr-accent-1);
}

.search-breadcrumb {
    line-height: 1.2;
}

.search-breadcrumb a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    font-weight: 500;
}

/* .search-results .pagination {
margin-block: 1em 3em;
} */

@media (min-width: 600px) {
    .search-result h2 {
        font-size: 1.25rem;
    }
}

/* !----------------- */
/* ! EGY TERMÉK OLDALA */
/* ! ----------------- */

.woocommerce-page .content-area {
    background: var(--clr-light);
    padding-block: 30px 50px;
}

.woocommerce-page .site-main {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
}

.single-product .site-main {
    background: #ffffff;
    border-radius: 5px;
    padding: 1em;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(108, 75, 175, 0.2),
        0px 6px 10px 0px rgba(108, 75, 175, 0.14);
    box-shadow: 0px 3px 5px -1px rgba(108, 75, 175, 0.2),
        0px 6px 10px 0px rgba(108, 75, 175, 0.14);
}

.woocommerce-product-gallery img {
    border-radius: 5px;
}

.single-product #main div.product div.woocommerce-product-gallery ol {
    margin-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.333333%;
}

.single-product #main div.product div.woocommerce-product-gallery ol li {
    width: 24%;
    margin-bottom: 0.5rem;
}

.single-product .price {
    margin-bottom: 1em;
}

.single-product .amount {
    color: var(--clr-dark);
    font-weight: 500;
}

.single-product .summary form {
    margin-top: 1em;
    padding-bottom: 2em;
    border-bottom: 1px solid var(--clr-accent-1);
}

.single-product .quantity {
    border: 1px solid var(--clr-accent-1);
}

.single-product .quantity .input-text {
    padding: 0.3em 0.5em 0.1em 0.2em;
}

.single_add_to_cart_button {
    margin-left: 1em !important;
    background-color: var(--clr-accent-1) !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
}

.single_add_to_cart_button:hover {
    background-color: var(--clr-accent-2) !important;
}

.single-product .product_meta {
    display: grid;
    gap: 1em;
}

.single-product .product_meta a {
    text-decoration: none;
}

.woocommerce-message {
    border-top-color: var(--clr-accent-1);
    background-color: var(--clr-light);
    color: var(--clr-dark);
}

.woocommerce-message::before {
    color: var(--clr-accent-1);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
a.button {
    color: #ffffff;
    background-color: var(--clr-accent-1);
}

@media (min-width: 900px) {
    .woocommerce-page .content-area {
        padding-block: 100px 120px;
    }
    .single-product .woocommerce-breadcrumb {
        margin-bottom: 2em;
    }
}

@media (min-width: 1500px) {
    .woocommerce-page .content-area {
        position: relative;
    }
    .woocommerce-page .content-area::before,
    .woocommerce-page .content-area::after {
        position: absolute;
        content: "";
        display: block;
        width: 7%;
        height: 100%;
        background-image: url(img/dot.png);
        top: 0;
        /* z-index: -1; */
    }
    .woocommerce-page .content-area::before {
        left: 0;
    }
    .woocommerce-page .content-area::after {
        right: 0;
    }
}

/* ! Tabs */

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    border-top: 1px solid var(--clr-accent-1);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    border-radius: 0;
    background: transparent;
    margin-right: 0.8em;
    margin-left: 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul li {
    padding-left: 1rem;
    position: relative;
    list-style-type: none;
    margin-bottom: 0.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-top: 5px solid var(--clr-accent-1);
    border-bottom: none;
    background: transparent;
    color: var(--clr-dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a {
    color: var(--clr-accent-1);
    font-size: 1rem;
    font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:hover {
    color: var(--clr-accent-2);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-dark);
}

.woocommerce div.product .woocommerce-tabs div {
    max-width: 750px;
}

.woocommerce table.shop_attributes th {
    text-align: left;
    padding-left: 0;
}

.woocommerce table.shop_attributes td p {
    padding: 8px;
}

.woocommerce table.shop_attributes tr:nth-child(2n) th,
.woocommerce table.shop_attributes tr:nth-child(2n) td {
    background: rgba(241, 238, 247, 0.4);
}



/* ! Kapcsolódó termékek */

.woocommerce-page .related > h2,
.woocommerce-page .up-sells > h2{
    margin-block: 2em 1em;
}

.woocommerce-page ul.products li.product {
    background: var(--clr-light);
    border-radius: 5px;
    padding: 0.5em 0.5em 1em;
}

.woocommerce-page ul.products[class*="columns-"] li.product {
    width: 100%;
}

.woocommerce ul.products li.product a img {
    border-radius: 5px;
}

.woocommerce ul.products li.product a:nth-of-type(2) {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0 0 1em;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a {
    color: var(--clr-dark);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
a.button:not(.wc-forward) {
    font-weight: 600;
    width: 100%;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
a.button:hover {
    background-color: var(--clr-accent-2);
    color: #ffffff;
}

.woocommerce a.added_to_cart {
    text-align: center;
    display: block;
}

.woocommerce table.shop_attributes th::first-letter {
    text-transform: uppercase;
}

@media (min-width: 600px) {
    .woocommerce-page ul.products[class*="columns-"] li.product {
        width: 46%;
    }
}

@media (min-width: 900px) {
    .woocommerce-page ul.products[class*="columns-"] li.product {
        width: 22%;
    }
}

/* !----------------- */
/* ! ÖSSZES TERMÉK és TERMÉK KATEGÓRIA GYŰJTŐ */
/* ! ----------------- */

.post-type-archive-product h1,
.tax-product_cat h1,
.tax-product_brand h1 {
    color: var(--clr-dark);
    margin-bottom: 1em;
}

.post-type-archive-product h1::first-letter,
.tax-product_cat h1::first-letter,
.tax-product_brand h1::first-letter {
    text-transform: uppercase;
}

.post-type-archive-product .product-categories,
.tax-product_cat .product-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-bottom: 2em;
}

.post-type-archive-product .product-categories a,
.tax-product_cat .product-categories a {
    color: var(--clr-accent-1);
    background: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.4em 0.8em 0.2em;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.post-type-archive-product .product-categories a:hover,
.tax-product_cat .product-categories a:hover {
    color: #ffffff;
    background: var(--clr-accent-1);
}

.post-type-archive-product .product-categories a::first-letter,
.tax-product_cat .product-categories a::first-letter {
    text-transform: uppercase;
}

.tax-product_cat ul.products li.product,
.post-type-archive-product ul.products li.product,
.tax-product_brand ul.products li.product,
.wc-block-grid__product.wc-block-grid__product {
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(108, 75, 175, 0.2),
        0px 6px 10px 0px rgba(108, 75, 175, 0.14);
            box-shadow: 0px 3px 5px -1px rgba(108, 75, 175, 0.2),
        0px 6px 10px 0px rgba(108, 75, 175, 0.14);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme))
ul.products
li.product
.price {
    color: var(--clr-dark);
    font-size: 1rem;
    font-weight: 500;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background-color: transparent;
    text-decoration: underline;
    text-underline-offset: 10px;
    color: var(--clr-accent-1);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: transparent;
    color: var(--clr-accent-1);
    text-decoration: underline;
    text-underline-offset: 10px;
}

.woocommerce-ordering {
    max-width: 100%;
    overflow-x: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.woocommerce-ordering select {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border-radius: 5px;
    border: 0;
    padding-block: 0.3em;
    padding-inline: 0.3em;
}

.term-description {
    margin-bottom: 1em;
    max-width: 800px;
}

/* !----------------- */
/* ! KOSÁR */
/* ! ----------------- */

/* ! Termékek listája */

table.wc-block-cart-items
.wc-block-cart-items__row
.wc-block-cart-item__image
img {
    border-radius: 5px;
}

table.wc-block-cart-items
.wc-block-cart-items__row
.wc-block-components-product-name {
    color: var(--clr-accent-1);
    font-weight: 600;
    text-decoration: none;
}

/* ! Kosár összesen */

.is-mobile.wc-block-components-sidebar-layout .wc-block-components-sidebar,
.is-medium.wc-block-components-sidebar-layout .wc-block-components-sidebar,
.is-large.wc-block-cart .wc-block-components-sidebar,
.is-large .wc-block-checkout__sidebar {
    background: #ffffff;
    border-radius: 5px;
    padding: 1em !important;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

table.wc-block-cart-items .wc-block-cart-items__header th,
.is-large.wc-block-cart .wc-block-cart__totals-title {
    text-transform: none !important;
    font-size: 1.125rem !important;
}

.wc-block-components-button:not(.is-link) {
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    padding: 0.6em 1.2em 0.4em;
    border-radius: 5px;
    color: #ffffff;
    background: var(--clr-accent-1);
    display: inline-block;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wc-block-components-button:not(.is-link):hover {
    background: var(--clr-accent-2);
}

.is-mobile
table.wc-block-cart-items
.wc-block-cart-items__row
.wc-block-cart-item__total {
    display: none;
}

@media (min-width: 600px) {
    .wc-block-components-sidebar-layout {
        margin-top: 2em !important;
    }
}

/* ! Talán érdekelhetnek ezek... */

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product div .wc-block-components-product-name {
    text-decoration: none;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .wc-block-components-product-button__button {
    background: #ffffff;
    border-radius: 5px;
    color: var(--clr-accent-1);
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .wp-block-heading {
    margin-top: 24px;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product div .wc-block-components-product-name {
    font-weight: 600 !important;
}

/* ! Üres kosár */

.wc-block-cart__empty-cart__title {
    margin-top: 1em;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    display: none !important;
}

.wp-block-woocommerce-empty-cart-block > h2 {
    margin-top: 2em;
}

.wc-block-product-categories {
    margin-block: 1em 2em;
}

.wc-block-product-categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5em;
}

.wc-block-product-categories-list-item {
    margin: 0 !important;
}

.wc-block-product-categories-list-item::before {
    display: none;
}

.wc-block-product-categories-list-item a {
    text-decoration: none;
    color: #ffffff;
    background: var(--clr-accent-1);
    font-weight: 500;
    display: inline-block;
    padding: 0.4em 1em;
    border-radius: 5px;
}

.wc-block-product-categories-list-item a:hover {
    background: var(--clr-accent-2);
}

.wc-block-product-categories-list-item a::first-letter {
    text-transform: uppercase;
}

/* !----------------- */
/* ! PÉNZTÁR */
/* ! ----------------- */

.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form
.wc-block-components-text-input
input[type="password"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="url"] {
    border: 0 !important;
    -webkit-box-shadow: inset 2px 2px 4px rgba(108, 75, 155, 0.25);
    box-shadow: inset 2px 2px 4px rgba(108, 75, 155, 0.25);
}

.wp-block-woocommerce-checkout-order-summary-block {
    border: 0 !important;
}

.wp-block-woocommerce-checkout-order-summary-block
.wc-block-components-checkout-order-summary__title
.wc-block-components-checkout-order-summary__title-text {
    font-weight: 700 !important;
}

.wp-block-woocommerce-checkout-order-summary-block
.wc-block-components-checkout-order-summary__title {
    border-bottom: 1px solid var(--clr-accent-1);
}

.wc-block-components-order-summary
.wc-block-components-order-summary-item__quantity {
    background: var(--clr-accent-1) !important;
    color: #ffffff !important;
}

.wc-block-checkout__sidebar .wc-block-components-product-name {
    font-weight: 700 !important;
}

.wc-block-components-order-summary
.wc-block-components-order-summary-item__description
.wc-block-components-product-metadata {
    display: none;
}

/* !----------------- */
/* ! FIÓK */
/* ! ----------------- */

.woocommerce-dashboard h1,
.woocommerce-orders h1,
.woocommerce-downloads h1,
.woocommerce-edit-address h1,
.woocommerce-edit-account h1,
.woocommerce-account h1 {
    margin-bottom: 1.5em;
}

.woocommerce-MyAccount-navigation-link a {
    text-decoration: none;
}

.woocommerce-info::before {
    color: var(--clr-accent-1) !important;
}

.woocommerce-info {
    border-top-color: var(--clr-accent-1);
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
    margin-top: 1em;
}

.woocommerce-account .addresses .title .edit {
    float: left;
}

.woocommerce-Address-title a {
    color: var(--clr-accent-1);
}

/* !----------------- */
/* ! BELÉPÉS ÉS REGISZTRÁCIÓ */
/* ! ----------------- */

.woocommerce form .form-row .input-text {
    border: 0;
    -webkit-box-shadow: inset 2px 2px 4px rgba(108, 75, 155, 0.25);
    box-shadow: inset 2px 2px 4px rgba(108, 75, 155, 0.25);
}

.woocommerce-privacy-policy-text a {
    color: var(--clr-accent-1);
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
:not(.edit-post-visual-editor)
)
.woocommerce
button.button {
    color: var(--clr-accent-1);
    background-color: #ffffff;
}

/* !----------------- */
/* ! CONTACT FORM */
/* ! ----------------- */

.wpcf7 {
    background: var(--clr-accent-1);
    padding: 1em 0.5em 2em;
    border-radius: 5px;
}

.wpcf7 label {
    color: #ffffff;
}

.wpcf7-form-control-wrap > * {
    margin-top: 5px;
    padding: 0.5em;
    border-radius: 3px;
    color: var(--clr-dark);
}

.wpcf7 input,
.wpcf7 textarea {
    background: #ffffff;
}

.wpcf7 input:not(.wpcf7 input[type="submit"]),
.wpcf7 textarea {
    width: 100%;
}

.wpcf7 textarea {
    resize: none;
}

.wpcf7-form p + p {
    margin-top: 1em;
}

.wpcf7 input:focus-visible,
.wpcf7 textarea:focus-visible {
    outline: transparent;
}

.wpcf7-not-valid-tip {
    color: #ffffff;
    padding: 0.2em;
    border: 1px solid #ffffff;
}

.wpcf7 input[type="submit"] {
    background: #ffffff;
    padding: 0.5em 2em 0.4em;
    width: 100%;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 5px;
    -webkit-transition: all ease 250ms;
    transition: all ease 250ms;
}

.wpcf7 input[type="submit"]:hover {
    background: var(--clr-light);
}

.wpcf7-spinner {
    display: none;
}

.wpcf7 input[type="checkbox"] {
    display: none;
}

.wpcf7-list-item {
    margin: 0;
    display: block;
}

.wpcf7-list-item-label {
    position: relative;
    padding-left: 25px;
    display: inline-block;
}

.wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    top: 5px;
    left: 0;
}

.wpcf7 input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background: url(img/check-icon.png);
    background-color: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wpcf7 form.failed .wpcf7-response-output {
    padding: 0.5em;
    margin: 1em 0;
    border-color: #ffffff;
    color: #ffffff;
}

.wpcf7-list-item a {
    color: #ffffff;
}

@media (min-width: 600px) {
    .wpcf7 {
        padding: 2em;
    }
    .wpcf7 input[type="submit"] {
        width: auto;
    }
}

/* !----------------- */
/* ! 404 */
/* ! ----------------- */

.product-cats-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-top: 1em;
}

.product-cats-404 a {
    text-decoration: none;
    color: #ffffff;
    background: var(--clr-accent-1);
    font-weight: 500;
    display: inline-block;
    padding: 0.4em 1em;
    border-radius: 5px;
}

.product-cats-404 a::first-letter {
    text-transform: uppercase;
}

/* !----------------- */
/* ! GO TO TOP BUTTON */
/* ! ----------------- */

.to-top {
    background: var(--clr-accent-1);
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.to-top::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 15px;
    left: 13px;
    border-top: 4px solid #ffffff;
    border-left: 4px solid #ffffff;
    border-radius: 2px;
}

/* !----------------- */
/* ! FOOTER */
/* ! ---------------- */

.footer-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3em;
    color: #ffffff;
    padding-block: 2em;
}

.foot-contact {
    --flow-space: 0.5em;
}

.foot-contact-info,
.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.social-icons {
    gap: 1.5rem;
    margin-top: 1em;
}

.foot-contact-info svg {
    width: 1rem;
}

.social-icon svg {
    width: 2rem;
}

.foot-contact-info span {
    color: white;
    font-size: 0.875rem;
}

.foot-logo img {
    width: 150px;
    margin-bottom: 2em;
}

.foot-contact-info span {
    font-size: 1rem;
}

footer h5 {
    margin-bottom: 1.5em;
}

.footer-1 ul a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5em;
}

.footer-1 ul a:hover {
    opacity: 0.7;
}

.foot-copyright {
    border-top: 1px solid var(--clr-accent-1);
    font-size: 0.875rem;
    text-align: center;
    padding-block: 0.5em;
}

@media (min-width: 600px) {
    .footer-1 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 2em;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
