/*
Theme Name: DorotaGoldPoint
Author: Maciej Noworyta
Author URI:
*/

:root {
    --text-color: #373b3f;
    --primary-color: #ffacaa;
    --secondary-color: #858688;
}

a, abbr, address, article, aside, audio, b, blockquote, body, canvas,
caption, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, p, pre, q, samp, section, small, span, strong, sub, summary,
sup, time, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
}

article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary {
    display: block;
}

a, ins, del {
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

strong {
    font-weight: 700;
}

caption, th {
    text-align: left;
}

* {
    outline: none;
    margin: 0;
    padding: 0;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 300ms ease-out 0s;
}

a:hover, a:focus {
    color: var(--text-color);
    text-decoration: underline;
    outline: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.transition {
    opacity: 0.85;
    -webkit-transition: all 300ms ease-out 0s;
    -moz-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
}

.transition:hover {
    opacity: 1;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.container-fluid {
    max-width: 100%;
    padding-left: 120px;
    padding-right: 120px;
}

p {
    padding: 5px 0;
    margin: 0 0 10px;
    line-height: 1.55;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cabin", sans-serif;
    color: var(--text-color);
    font-style: normal;
    line-height: 1.2;
    margin: 15px 0;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10px;
}

.button, .wc-block-cart__submit-button,
.wc-block-components-button {
    font-family: "Cabin", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #434548, #56585b, #434548, #434548);
    box-shadow: 0 4px 15px 0 rgba(86, 88, 91, 0.25);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 32px;
    text-transform: uppercase;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    letter-spacing: 2px;
}

.button:hover,
.button:focus,
.button-outline:hover,
.button-outline:focus,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus,
.wc-block-components-button:hover,
.wc-block-components-button:focus {
    color: #fff;
    text-decoration: none;
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    outline: none;
}

.button-outline {
    color: var(--text-color);
    border: 0;
    border-bottom: 1px solid var(--text-color);
    background: transparent;
    moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    box-shadow: none;
    padding: 10px;
    opacity: 0.5;
}

.button-outline:hover,
.button-outline:focus {
    color: var(--text-color);
    opacity: 1;
}

/* Header */
.logged-in #header,
.logged-in #header.sticky {
    top: 32px;
}

.slicknav_menu {
    display: none;
}

#header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 100%;
    z-index: 998;
    transition: all 500ms ease-out 0s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
    padding: 15px 0;
    min-height: 80px;
}

#header.sticky {
    top: 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
}

#header .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

#header .logo img {
    max-height: 50px;
    width: auto;
}

#header .header__left {
    display: flex;
    align-items: center;
    gap: 45px;
}

#header .navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

#header .navigation li {
    position: relative;
}

#header .navigation li a {
    font-family: "Cabin", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    display: block;
}

#header .navigation li a:before {
    content: '';
    transform-origin: 50% 100%;
    transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
    clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    top: 100%;
    left: 0;
    pointer-events: none;
}

#header .navigation li span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

#header .navigation li:hover span {
    transform: translate3d(0, -2px, 0);
}

#header .navigation li a:hover:before {
    transform: translate3d(0, 2px, 0) scale3d(1.08, 1, 1);
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

#header .header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

#header .header-language {
    margin-right: 10px;
}

#header .header-language ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -4px;
}

#header .header-cart .fly-cart-btn {
    cursor: pointer;
    position: relative;
}

#header .header-cart .cart-count {
    background-color: #858688;
    font-size: 8px;
    color: #fff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -4px;
}

/* Sections */
.section {
    padding: 45px 0;
}

.section-gray {
    background-color: #f4f4f4;
}

.section-heading {
    color: var(--text-color);
    text-align: center;
    line-height: 1.2;
    padding-bottom: 45px;
}

.section-heading .title {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-heading .description {
    font-size: 16px;
    color: var(--secondary-color);
    max-width: 880px;
    text-align: center;
    margin: 15px auto 0 auto;
}

.section-heading .description p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.section-heading .date {
    font-size: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.section-heading .post-tags a {
    font-size: 10px;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 4px 8px;
    background: #fff;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
    text-decoration: none;
}

.section-heading .post-tags a:hover {
    color: #fff;
    background: var(--secondary-color);
}

.section-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
}

#main {
    padding-top: 80px;
}

#main .section-breadcrumb {
    padding-top: 30px;
    padding-bottom: 0;
}

#main .rank-math-breadcrumb {
    font-size: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#main .rank-math-breadcrumb p {
    margin: 0;
}

#footer {
    background-color: #f4f4f4;
}

#footer .footer-title {
    font-family: "Cabin", sans-serif;
    color: var(--text-color);
    font-style: normal;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

#footer .footer-top {
    display: grid;
    grid-template-columns: 525px 1fr 200px;
    align-items: center;
    padding: 30px 0;
    gap: 60px;
}

#footer .footer-top .logo img {
    max-height: 65px;
    width: auto;
}

#footer .footer-top .company {
    padding-top: 30px;
}

#footer .footer-top .company-tiles {
    display: flex;
    align-items: flex-start;
    gap: 45px;
    margin-top: 30px;
}

#footer .footer-top .company-tiles > div {
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#footer .footer-top .company-tiles > div svg {
    min-width: 20px;
}

#footer .footer-top .company-tiles p {
    margin-top: 0;
    padding-top: 0;
}

#footer .footer-navigation {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

#footer .footer-navigation > div {
    flex: 1 1 0;
}

#footer .footer-navigation .footer-title {
    margin-bottom: 15px;
}

#footer .footer-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footer .footer-foundation img {
    width: 100%;
    max-width: 200px;
}

#footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

#footer .footer-bottom p {
    font-family: "Cabin", sans-serif;
    font-weight: 600;
    color: var(--text-color);
    font-size: 12px;
    margin: 0;
    padding: 0;
}

#footer .footer-bottom .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .footer-bottom .social span {
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-bottom .social a:hover span {
    background: var(--text-color);
    transition: all 300ms ease-out 0s;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

#footer .footer-bottom .social span  svg {
    fill: #fff;
    max-width: 16px;
    height: auto;
}

/* Pomocniczne */
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 0px 25px 0px 25px;
}

.alignleft {
    float: left;
    margin: 0px 25px 0px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 25px 25px;
}

a img.alignnone {
    margin: 5px 25px 25px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 25px 25px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 1367px) {
    .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
    }

    #footer .footer-top {
        grid-template-columns: 380px 1fr 200px;
        gap: 30px;
    }
}

@media (max-width: 1180px) {
    #footer .footer-top .company-tiles {
        flex-direction: column;
        gap: 30px;
    }

    #footer .footer-top {
        grid-template-columns: 250px 1fr 200px;
    }
}

@media (max-width: 992px) {
    .slicknav_menu {
        display: block;
    }

    .slicknav_btn {
        position: absolute;
        top: 21px;
        right: 20px;
    }

    .slicknav_icon {
        width: 30px;
        height: 20px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        display: block;
    }

    .slicknav_icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #212529;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .slicknav_icon span:nth-child(1) {
        top: 1px;
    }

    .slicknav_icon span:nth-child(2) {
        top: 9px;
    }

    .slicknav_icon span:nth-child(3) {
        top: 18px;
    }

    .slicknav_open .slicknav_icon span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .slicknav_open .slicknav_icon span:nth-child(2) {
        opacity: 0;
        left: -30px;
    }

    .slicknav_open .slicknav_icon span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .slicknav_nav {
        position: absolute;
        background: rgb(255, 255, 255);
        width: 100%;
        left: 0;
        top: 60px;
        padding-top: 15px;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    }

    .slicknav_nav a {
        color: #6b6b6b;
        font-weight: 700;
        display: block;
        padding: 10px 15px;
        text-align: center;
        border-top: 1px solid #eaeaea;
    }

    .slicknav_nav .current-menu-item a,
    .slicknav_nav a:hover {
        color: #fff;
        background: #212529;
    }

    .slicknav_item {
        margin: 0;
        padding: 0;
        position: relative;
    }

    .slicknav_arrow {
        position: absolute;
        top: 0;
        right: 15px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

    .button, .wc-block-cart__submit-button,
    .wc-block-components-button {
        font-size: 12px;
        padding: 10px 20px;
        min-width: auto;
    }

    #header {
        min-height: 70px;
    }

    #header .logo img {
        max-height: 40px;
        width: auto;
    }

    #header .navigation {
        display: none;
    }

    #header .header__right {
        position: absolute;
        top: 24px;
        right: 70px;
    }

    #main {
        padding-top: 70px;
    }

    .section {
        padding: 30px 0;
    }

    .section-heading {
        padding-bottom: 30px;
    }

    .section-heading .title {
        font-size: 28px;
    }

    .section-heading .description p {
        font-size: 12px;
    }

    #footer .footer-top {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    #footer .footer-navigation {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #footer .footer-top .company-tiles {
        align-items: center;
    }

    #footer .footer-top .company-tiles > div {
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-bottom {
        flex-direction: column;
    }
}


@media (max-width: 576px) {}
