@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/*--------------------------------------------------------------
# NF Starter - Main Stylesheet
# Version: 7.0.0
# No Bootstrap dependency - pure CSS flex/grid
--------------------------------------------------------------*/

/* ==========================================================================
   CSS Custom Properties (easy per-project customization)
   ========================================================================== */

:root {
    /* Colors */
    --nf-color-primary: #000;
    --nf-color-secondary: #1c1c1c;
    --nf-color-text: #0c0c0c;
    --nf-color-text-light: #666;
    --nf-color-text-muted: #888;
    --nf-color-border: rgba(0, 0, 0, .06);
    --nf-color-bg: #fff;
    --nf-color-bg-alt: #f4f4f4;
    --nf-color-footer-bg: #1c1c1c;
    --nf-color-footer-text: #cfcfcf;

    /* Typography */
    --nf-font-body: 'Manrope', Helvetica, Arial, sans-serif;
    --nf-font-heading: 'Manrope', Helvetica, Arial, sans-serif;
    --nf-font-size-base: 16px;
    --nf-line-height: 1.62857;

    /* Layout */
    --nf-container-big: 1656px;
    --nf-container-mid: 1380px;
    --nf-container-padding: 15px;

    /* Transitions */
    --nf-transition: .3s ease;
    --nf-transition-slow: .6s ease;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--nf-color-bg);
    color: var(--nf-color-text);
    font-family: var(--nf-font-body);
    font-size: var(--nf-font-size-base);
    line-height: var(--nf-line-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.hero-title,
h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--nf-font-heading);
    font-weight: 800;
    letter-spacing: .5px;
}


p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
}

strong {
    font-weight: 700;
}

a {
    color: var(--nf-color-secondary);
    background-color: transparent;
    transition: var(--nf-transition);
}

a:active,
a:hover {
    color: var(--nf-color-secondary);
    outline: 0;
    text-decoration: none;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.container-big {
    width: 100%;
    max-width: var(--nf-container-big);
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--nf-container-padding);
    padding-left: var(--nf-container-padding);
}

.container-mid {
    width: 100%;
    max-width: var(--nf-container-mid);
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--nf-container-padding);
    padding-left: var(--nf-container-padding);
}

/* ==========================================================================
   Utility: text-center
   ========================================================================== */

.text-center {
    text-align: center;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px) saturate(120%);
    -webkit-backdrop-filter: blur(2px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-logo img {
    display: block;
    max-height: 48px;
    width: auto;
}

.logo-secondary img {
    max-height: 48px;
}

/* Navigation */
.header-nav .main-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .main-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: .3px;
    position: relative;
}

.header-nav .main-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--nf-transition);
}

.header-nav .main-menu li a:hover::after {
    width: 100%;
}

/* Sub-menu (dropdown) */
.header-nav .main-menu li {
    position: relative;
}

.header-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: .75rem 0;
    margin-top: .5rem;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(10px);
    list-style: none;
    z-index: 1001;
}

.header-nav .main-menu li:hover>.sub-menu {
    display: block;
}

.header-nav .sub-menu li a {
    display: block;
    padding: .5rem 1.25rem;
    font-size: .85rem;
    white-space: nowrap;
}

/* Header CTA */
.header-cta {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.75rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-decoration: none;
    border-radius: 0;
    transition: all var(--nf-transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .45);
    color: rgba(255, 255, 255, .85);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .95);
    color: #000;
    border-color: rgba(255, 255, 255, .95);
}

.btn-solid {
    background: rgba(255, 255, 255, .9);
    color: #000;
    border: 1px solid rgba(255, 255, 255, .9);
}

.btn-solid:hover {
    background: #fff;
    border-color: #fff;
}

.btn-main a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 2.25rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .75px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 0;
    background: transparent;
    transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.btn-main a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-black a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 2.2rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 0;
    transition: background .35s ease, color .35s ease;
}

.btn-black a:hover {
    background: #4a4a4a;
    color: #fff;
}


.btn .fa-sharp {
    margin-right: .5rem;
}

/* ==========================================================================
   Hero / Slider
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
    z-index: 1;
    filter: grayscale(100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 76%) 25%, rgb(0 0 0 / 74%) 45%, rgb(0 0 0 / 58%) 65%, rgb(0 0 0 / 61%) 85%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-box {
    max-width: 991px;
    margin: 0 auto;
    color: #fff;
}

.hero-box>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

.hero-box.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.hero-box.is-visible> :nth-child(1) {
    transition-delay: .1s;
}

.hero-box.is-visible> :nth-child(2) {
    transition-delay: .25s;
}

.hero-box.is-visible> :nth-child(3) {
    transition-delay: .4s;
}

.hero-box.is-visible> :nth-child(4) {
    transition-delay: .55s;
}

.hero-title,
.hero-subtitle,
.hero-headings h4 {
    text-align: center;
}

.hero-pretitle {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: .75rem;
}

.hero-title {
    font-size: clamp(2.6rem, 4vw, 5.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: .4px;
}

.hero-headings h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: .5rem;
    opacity: .9;
}

.hero-headings h4 {
    font-size: 1rem;
    font-weight: 400;
    opacity: .75;
}

.hero-text {
    margin: 1.5rem auto 0;
    text-align: center;
}

.btn-main {
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
}

/* Swiper pagination */
.hero,
.hero-slider,
.swiper {
    position: relative;
}

.hero .swiper-pagination {
    bottom: 5rem !important;
}

.hero .swiper-pagination-bullet {
    width: 28px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, .35);
    opacity: 1 !important;
    transition: background var(--nf-transition), width var(--nf-transition);
}

.hero .swiper-pagination-bullet-active {
    background: #fff;
    width: 48px;
}

.swiper-horizontal>.swiper-pagination-bullets {
    left: 0;
    bottom: 1rem;
}

/* Hero — badge pretitle */
.hero-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .4rem 1rem;
    margin-bottom: 2rem;
}

/* Hero — ostatnia linia tytułu w złotym kolorze */
.hero-title-accent {
    color: #c9a96e;
    font-style: normal;
}

/* Hero — przycisk CTA (złoty, wypełniony) */
.btn-hero-wrap {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 2.5rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    background: #c9a96e;
    border: 1px solid #c9a96e;
    border-radius: 0;
    transition: background var(--nf-transition), color var(--nf-transition), border-color var(--nf-transition);
}

.btn-hero:hover {
    background: #b8945a;
    border-color: #b8945a;
    color: #fff;
}

/* (stary blok services — zastąpiony przez Services Section niżej) */

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    padding: 7rem 0;
    background: var(--nf-color-secondary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Lewa kolumna — info */
.about-info {
    color: #fff;
}

.about-pretitle {
    display: block;
    font-size: .7rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: .9rem;
}

.about-title {
    font-family: var(--nf-font-heading);
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
}

.about-divider {
    width: 48px;
    height: 2px;
    background: #c9a96e;
    margin: 1.75rem 0;
}

.about-content {
    font-family: var(--nf-font-body);
    font-size: .95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .72);
}

.about-content p+p {
    margin-top: 1.25rem;
}

.about-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.counter-item {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-family: var(--nf-font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 500;
    letter-spacing: .5px;
    color: #c9a96e;
    line-height: 1;
}

.counter-label {
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: .5rem;
}

/* Prawa kolumna — zdjęcie */
.about-image img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Services Section (Leistungen)
   ========================================================================== */

.services {
    padding: 7rem 0;
    background: var(--nf-color-bg-alt);
}

.services-head {
    margin-bottom: 5rem;
}

.services-pretitle {
    display: block;
    font-size: .7rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: .9rem;
}

.services-title {
    font-family: var(--nf-font-heading);
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--nf-color-text);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.services-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.services-row--reverse {
    direction: rtl;
}

.services-row--reverse>* {
    direction: ltr;
}

.services-row__number {
    font-family: var(--nf-font-heading);
    font-size: 4rem;
    font-weight: 400;
    color: #c9a96e;
    opacity: .4;
    line-height: 1;
    margin-bottom: .5rem;
}

.services-row__title {
    font-family: var(--nf-font-heading);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--nf-color-text);
    margin-bottom: 0;
}

.services-row__divider {
    width: 40px;
    height: 2px;
    background: #c9a96e;
    margin: 1.5rem 0;
}

.services-row__desc {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--nf-color-text-light);
    margin-bottom: 1.5rem;
}

.services-row__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.services-row__bullets li {
    font-size: .9rem;
    color: var(--nf-color-text-light);
    padding-left: 1.25rem;
    position: relative;
}

.services-row__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #c9a96e;
}

.services-row__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Projects Section (Referenzen)
   ========================================================================== */

.projects {
    padding: 7rem 0;
    background: var(--nf-color-bg);
}

.projects-head {
    max-width: 640px;
    margin-bottom: 4rem;
}

.projects-pretitle {
    display: block;
    font-size: .7rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: .9rem;
}

.projects-title {
    font-family: var(--nf-font-heading);
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--nf-color-text);
    margin-bottom: 1rem;
}

.projects-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--nf-color-text-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.project-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .75) 100%);
    opacity: 0;
    transition: opacity .5s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.06);
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__info {
    padding: 1rem 0 .5rem;
}

.project-card__title {
    font-family: var(--nf-font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--nf-color-text);
    margin-bottom: .3rem;
}

.project-card__meta {
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--nf-color-text-muted);
}

/* ==========================================================================
   Page Templates
   ========================================================================== */

.page-bg {
    height: 480px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-bg .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
}

.page-title {
    padding: 6rem 0 4rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background: #d0d0d0;
}

.page-title .pt-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
}

.page-title h1 {
    font-size: 4.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    color: #1a1a1a;
}

.page-title h3 {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9a9a9a;
    margin: 0;
}

.page-content {
    padding: 2rem 0 5rem;
}

.entry-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 1.6rem;
}

.entry-content h2 {
    font-size: 2.4rem;
    margin: 3rem 0 1.25rem;
}

.entry-content h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

#contact_html {
    filter: grayscale(100%);
}

/* ==========================================================================
   Contact Form 7
   ========================================================================== */

.wpcf7 form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.wpcf7 form .form-row--full {
    grid-template-columns: 1fr;
}

.wpcf7 label {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #8a8a8a;
    font-weight: 500;
    display: block;
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    border-radius: 0;
    padding: .65rem 0;
    font-size: .95rem;
    font-family: var(--nf-font-body);
    background: transparent;
    color: #111;
    transition: border-color var(--nf-transition);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #aaa;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 2.4rem;
    margin-top: 1.5rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--nf-transition), transform var(--nf-transition);
}

.wpcf7 input[type="submit"]:hover {
    background: #3a3a3a;
    transform: translateY(-1px);
}

.wpcf7-not-valid-tip {
    font-size: .7rem;
    color: #b00000;
    margin-top: .35rem;
}

.wpcf7-response-output {
    border: none;
    padding: 1rem 0 0;
    font-size: .85rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

#footer-wrapper {
    padding: 6rem 0;
    background: var(--nf-color-footer-bg);
    color: #6b6b6b;
    font-size: .7rem;
}

.site-footer {
    color: var(--nf-color-footer-text);
    font-size: .9rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.site-footer a:hover {
    color: #bdbdbd;
}

/* Footer Widgets */
.footer-widget {
    padding: 4.5rem 0 3.5rem;
}

.footer-widget-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
}

.col-first {
    padding-right: 3rem;
}

.footer-widget img {
    max-width: 240px;
    height: auto;
}

.footer-widget h2,
.footer-widget .wp-block-heading {
    font-family: var(--nf-font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: .2px;
}

.footer-widget p {
    margin-bottom: .5rem;
    line-height: 1.7;
    opacity: .85;
    font-size: .9rem;
}

.footer-widget strong {
    color: #9b9b9b;
    font-weight: 500;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .55rem;
    line-height: 1.6;
}

.footer-widget ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .15rem;
    font-size: .65rem;
    color: #fff;
}

.footer-widget ul li a {
    font-size: .9rem;
    opacity: .9;
    color: #9b9b9b;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 0;
    font-size: .75rem;
    color: #9b9b9b;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover {
    opacity: .8;
}

.footer-bottom .fb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll to Top */
.scroll-top a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background .25s ease, transform .25s ease;
}

.scroll-top a:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nf-color-border);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    padding: .75rem 0;
}

#commentform textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    padding: .65rem;
    font-size: .95rem;
    font-family: var(--nf-font-body);
    background: transparent;
    color: #111;
    min-height: 120px;
    resize: vertical;
}

#commentform textarea:focus {
    outline: none;
    border-color: #000;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"] {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    padding: .5rem .65rem;
    font-size: .95rem;
    font-family: var(--nf-font-body);
}

#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus {
    outline: none;
    border-color: #000;
}

#commentsubmit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 2rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--nf-transition);
    margin-top: 1rem;
}

#commentsubmit:hover {
    background: #3a3a3a;
}

/* ==========================================================================
   WordPress Widgets (sidebar)
   ========================================================================== */

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-family: var(--nf-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: .35rem 0;
}

.widget ul li a {
    text-decoration: none;
    color: var(--nf-color-text);
    transition: color var(--nf-transition);
}

.widget ul li a:hover {
    color: var(--nf-color-text-muted);
}

.widget_search input[type="search"] {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    padding: .5rem .75rem;
    font-size: .95rem;
    font-family: var(--nf-font-body);
}

.widget_search input[type="submit"] {
    margin-top: .5rem;
    padding: .5rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: .8rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    padding: 7rem 0;
    background: var(--nf-color-secondary);
    color: #fff;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Left column */
.contact-info .section-pretitle {
    display: block;
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 1.25rem;
}

.contact-title {
    font-family: var(--nf-font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

/* Contact detail items */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, .35);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-size: .9rem;
}

.contact-detail-body {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.contact-detail-label {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.contact-detail-body a,
.contact-detail-body address {
    font-style: normal;
    font-size: .95rem;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color var(--nf-transition);
    line-height: 1.5;
}

.contact-detail-body a:hover {
    color: #c9a96e;
}

.contact-hours {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Right column — form box */
.contact-form-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    padding: 3rem;
}

.contact-form-heading {
    font-family: var(--nf-font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-form-placeholder {
    font-size: .85rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.8;
}

/* ==========================================================================
   Footer Social Icons
   ========================================================================== */

.footer-social {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    text-decoration: none;
    transition: background var(--nf-transition), color var(--nf-transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}



/* ============================================================
   G24 — Garaże24 Theme Styles
   Brand: #c30a28 red | #111111 black | Manrope font
   ============================================================ */

/* ----------------------------------------------------------
   G24 Custom Properties
   ---------------------------------------------------------- */
:root {
    --g24-red: #c30a28;
    --g24-red-dark: #a00820;
    --g24-black: #111111;
    --g24-dark: #1a1a1a;
    --g24-gray: #f5f5f5;
    --g24-gray-mid: #e0e0e0;
    --g24-white: #ffffff;
    --g24-text: #1a1a1a;
    --g24-text-muted: #666666;
    --g24-font: 'Manrope', sans-serif;
    --g24-container: 1680px;
    --g24-pad-x: clamp(1rem, 4vw, 3rem);
    --g24-ease: .3s cubic-bezier(.4, 0, .2, 1);
    --g24-ease-slow: .6s cubic-bezier(.4, 0, .2, 1);
    --g24-radius: 0;
    --g24-radius-lg: 0;
}

/* ----------------------------------------------------------
   G24 Base Override — apply Manrope to g24 sections
   ---------------------------------------------------------- */
.g24-header,
.g24-section,
.g24-footer,
.mobile-nav {
    font-family: var(--g24-font);
}

/* ----------------------------------------------------------
   Container XL
   ---------------------------------------------------------- */
.container-xl {
    width: 100%;
    max-width: var(--g24-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--g24-pad-x);
    padding-right: var(--g24-pad-x);
}

/* ----------------------------------------------------------
   Utilities
   ---------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.d-none {
    display: none !important;
}

.d-md-none {
    display: block;
}

/* ----------------------------------------------------------
   G24 Section wrapper
   ---------------------------------------------------------- */
.g24-section {
    position: relative;
    overflow: hidden;
}

/* ----------------------------------------------------------
   Section Head helpers
   ---------------------------------------------------------- */
.section-head-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--g24-font);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--g24-red);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--g24-font);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: inherit;
    margin: 0 0 .5rem;
    letter-spacing: -.5px;
}

.section-desc {
    font-size: 1rem;
    color: var(--g24-text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

/* ----------------------------------------------------------
   G24 Buttons
   ---------------------------------------------------------- */

/* Base .btn already defined — we extend with variants */
.btn-red {
    background: var(--g24-red);
    color: #fff;
    border: 2px solid var(--g24-red);
}

.btn-red:hover {
    background: var(--g24-red-dark);
    border-color: var(--g24-red-dark);
    color: #fff;
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, .9);
    border: 2px solid rgba(255, 255, 255, .4);
}

.btn-ghost-white:hover {
    background: var(--g24-black);
    border-color: var(--g24-black);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #111111;
    border-color: #111111;
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--g24-black);
    border: 2px solid var(--g24-black);
}

.btn-outline-dark:hover {
    background: var(--g24-black);
    color: #fff;
}

.btn-dark {
    background: var(--g24-black);
    color: #fff;
    border: 2px solid var(--g24-black);
}

.btn-dark:hover {
    background: var(--g24-black);
    border-color: var(--g24-black);
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ----------------------------------------------------------
   G24 Header
   ---------------------------------------------------------- */
.g24-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--g24-ease), box-shadow var(--g24-ease), padding var(--g24-ease);
}

/* Transparent state — homepage, single-bar frosted glass (-30% intensity) */
.g24-header.is-transparent {
    background: rgba(10, 10, 14, .36);
    backdrop-filter: blur(18px) saturate(150%) brightness(82%);
    -webkit-backdrop-filter: blur(18px) saturate(150%) brightness(82%);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Scrolled state — pełny ciemny */
.g24-header.is-transparent.is-scrolled {
    background: rgba(17, 17, 17, .95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    border-bottom: none;
}

/* Solid state — podstrony */
.g24-header.is-solid {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.g24-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 2rem;
    transition: padding var(--g24-ease);
}

.g24-header.is-scrolled .header-inner {
    padding: .85rem 1.5rem;
}

/* Logo */
.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-link img {
    display: block;
    height: 44px;
    width: auto;
    transition: opacity var(--g24-ease);
}

/* Light logo (visible on transparent / scrolled-dark header) */
.logo-img--light {
    display: block;
}

.logo-img--dark {
    display: none;
}

.g24-header.is-solid .logo-img--light {
    display: none;
}

.g24-header.is-solid .logo-img--dark {
    display: block;
}

/* Desktop Navigation */
.g24-header .header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.g24-header .main-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.g24-header .main-menu a {
    font-family: var(--g24-font);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    color: rgba(255, 255, 255, .88);
    position: relative;
    display: inline-block;
    padding: .3rem .5rem;
    margin: -.3rem -.5rem;
    overflow: hidden;
    transition: color .25s ease;
    z-index: 0;
}

/* Wow hover: red fill sweep from bottom */
.g24-header .main-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--g24-red);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
}

.g24-header .main-menu a::after {
    display: none;
}

.g24-header .main-menu a:hover,
.g24-header .main-menu .current-menu-item>a {
    color: #fff;
}

.g24-header .main-menu a:hover::before,
.g24-header .main-menu .current-menu-item>a::before {
    transform: scaleY(1);
}

/* Solid header — dark nav links, wow hover działa tak samo (fill red → white text) */
.g24-header.is-solid .main-menu a {
    color: var(--g24-dark);
}

.g24-header.is-solid .main-menu a:hover,
.g24-header.is-solid .main-menu .current-menu-item>a {
    color: #fff;
}

/* CTA group in header */
.g24-header .header-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: var(--g24-radius);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--g24-ease);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 0;
    transition: background var(--g24-ease);
}

.g24-header.is-solid .nav-hamburger {
    border-color: rgba(17, 17, 17, .25);
}

.g24-header.is-solid .nav-hamburger span {
    background: var(--g24-black);
}

.nav-hamburger:hover {
    border-color: rgba(255, 255, 255, .7);
}

/* ----------------------------------------------------------
   Mobile Nav Drawer
   ---------------------------------------------------------- */
.mobile-nav {
    display: none;
    /* shown via JS class */
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(2px);
    animation: fadeIn var(--g24-ease) both;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: var(--g24-black);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: slideInRight var(--g24-ease) both;
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav__header img {
    height: 36px;
    width: auto;
    display: block;
}

.mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--g24-ease), color var(--g24-ease);
    line-height: 1;
}

.mobile-nav__close:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.mobile-nav__body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav__menu li a {
    display: block;
    padding: .875rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: color var(--g24-ease), padding-left var(--g24-ease);
}

.mobile-nav__menu li a:hover {
    color: var(--g24-red);
    padding-left: .5rem;
}

.mobile-nav__ctas {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

body.nav-locked {
    overflow: hidden;
}

/* ----------------------------------------------------------
   G24 Hero — Swiper Slider
   ---------------------------------------------------------- */
.g24-hero {
    height: 100svh;
    min-height: 600px;
    position: relative;
    padding: 0;
}

.g24-hero-swiper {
    width: 100%;
    height: 100%;
}

.g24-slide {
    position: relative;
    overflow: hidden;
    height: 100svh;
    min-height: 600px;
}

/* Background image */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0%, 0%);
    }

    33% {
        transform: scale(1.07) translate(-1.5%, 0.5%);
    }

    66% {
        transform: scale(1.05) translate(1%, -0.8%);
    }

    100% {
        transform: scale(1) translate(0%, 0%);
    }
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: kenBurns 14s ease-in-out infinite;
    /* will-change: transform — usunięte: rozdzielałoby compositing layer
       i uniemożliwiało backdrop-filter na fixedowym headerze powyżej */
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .45) 50%,
            rgba(0, 0, 0, .15) 100%);
}

/* Content */
.slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.slide-inner {
    max-width: 740px;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--g24-font);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: .55rem 1.25rem;
    border-radius: 0;
    margin-bottom: 2.25rem;
}

.slide-title {
    font-family: var(--g24-font);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 2rem;
    letter-spacing: -.02em;
}

.hero-hl {
    color: var(--g24-red);
}

.slide-desc {
    font-family: var(--g24-font);
    font-size: clamp(.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin: 0 0 3rem;
    max-width: 520px;
}

.slide-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* Swiper controls */
.g24-swiper-prev,
.g24-swiper-next {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    transition: background var(--g24-ease);
}

.g24-swiper-prev::after,
.g24-swiper-next::after {
    font-size: 1rem;
}

.g24-swiper-prev:hover,
.g24-swiper-next:hover {
    background: rgba(255, 255, 255, .25);
}

.g24-swiper-dots {
    bottom: 2rem;
}

.g24-swiper-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .4);
    opacity: 1;
    transition: background var(--g24-ease), transform var(--g24-ease);
}

.g24-swiper-dots .swiper-pagination-bullet-active {
    background: var(--g24-red);
    transform: scale(1.35);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ----------------------------------------------------------
   G24 Oferta Section
   ---------------------------------------------------------- */
.g24-oferta {
    background: var(--g24-black);
    color: #fff;
    padding: 5rem 0;
}

.g24-oferta .section-head-split {
    align-items: center;
    margin-bottom: 2.5rem;
}

.g24-oferta .section-title {
    color: #fff;
}

.g24-oferta .section-desc {
    color: rgba(255, 255, 255, .55);
    text-align: center;
    max-width: 400px;
}

.g24-oferta .shs-center {
    text-align: left;
}

.g24-oferta .shs-center p {
    max-width: 65%
}

.oferta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.oferta-card {
    position: relative;
    border-radius: var(--g24-radius);
    overflow: hidden;
    cursor: pointer;
    background: #1e1e1e;
}

.oferta-card--offset {
    margin-top: 2.5rem;
}

.oferta-card__img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.oferta-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
    display: block;
}

.oferta-card:hover .oferta-card__img img {
    transform: scale(1.06);
}

.oferta-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 55%);
    transition: background var(--g24-ease);
}

.oferta-card:hover .oferta-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .25) 100%);
}

.oferta-card__arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    background: var(--g24-red);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    opacity: 0;
    transform: scale(.7);
    transition: opacity var(--g24-ease), transform var(--g24-ease);
}

.oferta-card:hover .oferta-card__arrow {
    opacity: 1;
    transform: scale(1);
}

.oferta-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    z-index: 1;
}

.oferta-card__title {
    font-family: var(--g24-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .5rem;
    line-height: 1.3;
}

.oferta-card__desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--g24-ease-slow), opacity var(--g24-ease);
    opacity: 0;
    max-width: 80%
}

.oferta-card:hover .oferta-card__desc {
    max-height: 80px;
    opacity: 1;
}

/* ----------------------------------------------------------
   G24 Shop Section
   ---------------------------------------------------------- */
.g24-shop {
    background: var(--g24-gray);
    padding: 5rem 0;
}

.g24-shop .section-head-center .section-title {
    color: var(--g24-black);
}

/* Filter tabs */
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    font-family: var(--g24-font);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: .6rem 1.4rem;
    border-radius: 0;
    border: 2px solid var(--g24-gray-mid);
    background: #fff;
    color: var(--g24-text-muted);
    cursor: pointer;
    transition: all var(--g24-ease);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--g24-black);
    color: var(--g24-black);
}

.filter-btn.is-active {
    background: var(--g24-red);
    border-color: var(--g24-red);
    color: #fff;
}

/* Products grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-card {
    background: #fff;
    border-radius: var(--g24-radius-lg);
    overflow: hidden;
    transition: transform var(--g24-ease), box-shadow var(--g24-ease), opacity .25s ease;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.shop-card.is-hidden {
    display: none;
}

.shop-card__thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--g24-gray);
}

.shop-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--g24-ease);
}

.shop-card:hover .shop-card__thumb img {
    transform: scale(1.04);
}

/* Badge */
.shop-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-family: var(--g24-font);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 0;
    line-height: 1;
}

.shop-badge--black {
    background: var(--g24-black);
    color: #fff;
}

.shop-badge--red {
    background: var(--g24-red);
    color: #fff;
}

/* Hover overlay */
.shop-card__hover {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--g24-ease);
}

.shop-card:hover .shop-card__hover {
    opacity: 1;
}

/* Product info */
.shop-card__info {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.shop-card__meta {
    flex: 1;
    min-width: 0;
}

.shop-card__name {
    font-family: var(--g24-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--g24-black);
    margin: 0 0 .25rem;
    line-height: 1.3;
}

.shop-card__name a {
    color: inherit;
    text-decoration: none;
}

.shop-card__name a:hover {
    color: var(--g24-red);
}

.shop-card__subtitle {
    font-size: .78rem;
    color: var(--g24-text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-card__price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    display: block;
    font-family: var(--g24-font);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--g24-black);
    line-height: 1;
}

.price-label {
    font-size: .68rem;
    color: var(--g24-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}

/* Shop footer CTA */
.shop-footer {
    text-align: center;
    margin-top: 1rem;
}

/* ----------------------------------------------------------
   G24 About Section
   ---------------------------------------------------------- */
.g24-about {
    background: var(--g24-black);
    color: #fff;
    padding: 6rem 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left — content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.about-eyebrow {
    /* uses .section-eyebrow */
}

.g24-about .section-title {
    font-family: var(--g24-font);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -.03em;
}

.about-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.about-stat__number {
    font-family: var(--g24-font);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--g24-red);
    line-height: 1;
}

.about-stat__label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    line-height: 1.4;
}

/* Right — visual */
.about-visual {
    position: relative;
    min-height: 560px;
}

.about-img-frame {
    position: relative;
    border-radius: var(--g24-radius-lg);
    overflow: hidden;
    height: 560px;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: 16px;
    left: 16px;
    border: 2px solid var(--g24-red);
    border-radius: var(--g24-radius-lg);
    z-index: -1;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating card */
.about-float-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: #fff;
    border-radius: var(--g24-radius-lg);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    max-width: 280px;
    z-index: 2;
}

.about-float-icon {
    width: 44px;
    height: 44px;
    background: var(--g24-red);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-float-content {}

.about-float-title {
    font-family: var(--g24-font);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--g24-red);
    margin: 0 0 .25rem;
}

.about-float-sub {
    font-family: var(--g24-font);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--g24-black);
    margin: 0 0 .25rem;
    line-height: 1.1;
}

.about-float-desc {
    font-size: .78rem;
    color: var(--g24-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ----------------------------------------------------------
   G24 Realizacje Section
   ---------------------------------------------------------- */
.g24-realizacje {
    background: #fff;
    padding: 5rem 0;
}

.realizacje-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.realizacje-head .section-title {
    color: var(--g24-black);
}

.realizacje-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

/* Main item — spans 7 columns, full height */
.real-item--main {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}

/* Small items — 5 columns each, 2 rows */
.real-item--small:nth-of-type(2) {
    grid-column: 8 / 13;
    grid-row: 1;
}

.real-item--small:nth-of-type(3) {
    grid-column: 8 / 13;
    grid-row: 2;
}

.real-item--small:nth-of-type(4),
.real-item--small:nth-of-type(5),
.real-item--small:nth-of-type(6) {
    grid-column: span 4;
    grid-row: 3;
}

.real-item {
    position: relative;
    border-radius: var(--g24-radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #eee;
}

.real-item__img {
    position: relative;
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}

.real-item--main .real-item__img {
    min-height: 520px;
}

.real-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--g24-ease);
}

.real-item:hover .real-item__img img {
    transform: scale(1.05);
}

.real-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 55%);
    transition: background var(--g24-ease);
}

.real-item:hover .real-item__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 100%);
}

.real-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    color: #fff;
    z-index: 1;
}

.real-item__title {
    font-family: var(--g24-font);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .35rem;
    line-height: 1.3;
}

.real-item--main .real-item__title {
    font-size: 1.35rem;
}

.real-item__meta {
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    margin: 0 0 .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.real-item__desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----------------------------------------------------------
   G24 Opinie Section
   ---------------------------------------------------------- */
.g24-opinie {
    background: var(--g24-black);
    color: #fff;
    padding: 5rem 0;
}

.opinie-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.opinie-head {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

.opinie-head .section-eyebrow {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.opinie-head .section-title {
    color: #fff;
}

.opinie-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.rating-score {
    font-family: var(--g24-font);
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: .3rem;
}

.rating-stars i {
    color: #f5a623;
    font-size: 1.4rem;
}

.rating-count {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
    line-height: 1.4;
}

.opinie-embed {
    border-radius: var(--g24-radius-lg);
    overflow: hidden;
}

/* ----------------------------------------------------------
   G24 Kontakt Section
   ---------------------------------------------------------- */

.g24-kontakt {
    background: #f7f7f8;
    padding: 6rem 0;
}

.kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4.5rem;
    align-items: start;
}

.kontakt-info {
    color: #111;
}

.kontakt-info .section-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--g24-red);
    margin-bottom: 1rem;
}

.kontakt-info .section-title {
    font-family: var(--g24-font);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 800;
    color: #111;
    margin: 0 0 1.75rem;
    max-width: 520px;
}

.kontakt-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: #6f7682;
    margin: 0 0 2.5rem;
    max-width: 460px;
}

.kontakt-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kontakt-detail {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.kontakt-detail__label {
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #b0b5be;
    font-weight: 700;
}

.kontakt-detail__value {
    font-size: 1.08rem;
    color: #111;
    text-decoration: none;
    line-height: 1.6;
    transition: color var(--g24-ease);
    font-style: normal;
}

.kontakt-detail__value:hover {
    color: var(--g24-red);
}

.kontakt-detail__phone {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.kontakt-form-box {
    background: #f3f3f4;
    border: 1px solid #ececef;
    border-radius: 0;
    padding: 3rem;
}

.kontakt-form-heading {
    font-family: var(--g24-font);
    font-size: 2rem;
    font-weight: 700;
    color: #1b1b1d;
    margin: 0 0 2rem;
    letter-spacing: -.03em;
}

.kontakt-form-subheading {
    font-size: .92rem;
    color: #7c828d;
    margin: 0 0 2rem;
    line-height: 1.7;
}

.form-success,
.form-error {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.2rem;
    border-radius: 0;
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-success {
    background: #eef9f0;
    border: 1px solid #cfead5;
    color: #227a39;
}

.form-error {
    background: #fff1f1;
    border: 1px solid #f3c7c7;
    color: #b42318;
}

.form-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-pill {
    position: relative;
    width: calc(50% - .625rem);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.form-group.form-group--full {
    width: 100%;
}

.form-pill label,
.form-group>label {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8f96a2;
    margin-bottom: .45rem;
}

.req {
    color: var(--g24-red);
    margin-left: .2rem;
}

.form-pill input,
.form-pill select,
.form-group textarea {
    width: 100%;
    height: 56px;
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 0;
    color: #111;
    font-family: var(--g24-font);
    font-size: .96rem;
    padding: 0 1rem;
    transition: border-color var(--g24-ease), box-shadow var(--g24-ease), background var(--g24-ease);
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.form-group textarea {
    min-height: 140px;
    height: auto;
    resize: vertical;
    padding: 1rem;
}

.form-pill input::placeholder,
.form-group textarea::placeholder {
    color: #a8afb9;
}

.form-pill input:focus,
.form-pill select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--g24-red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(195, 10, 40, .08);
}

.form-pill select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238f96a2' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.75rem;
    cursor: pointer;
}

.form-pill select option {
    background: #fff;
    color: #111;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .25rem;
}

.radio-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.2rem;
    background: #fff;
    border: 1px solid #e2e5ea;
    color: #444b55;
    font-size: .9rem;
    font-weight: 500;
    transition: all var(--g24-ease);
}

.radio-pill:hover span {
    border-color: #c8cdd5;
    color: #111;
}

.radio-pill input:checked+span {
    background: var(--g24-red);
    border-color: var(--g24-red);
    color: #fff;
}

.form-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.rodo-check {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .78rem;
    color: #8a909a;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    min-width: 220px;
}

.rodo-check input[type="checkbox"] {
    margin-top: .2rem;
    width: 16px;
    height: 16px;
    accent-color: var(--g24-red);
    flex-shrink: 0;
}

.rodo-check a {
    color: #5c6470;
    text-decoration: underline;
}

.rodo-check a:hover {
    color: var(--g24-red);
}

.kontakt-form .btn,
.kontakt-form button[type="submit"] {
    min-width: 220px;
    min-height: 56px;
    padding: 0 2rem;
    border: 0;
    border-radius: 0;
    background: var(--g24-red);
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--g24-ease), opacity var(--g24-ease), background var(--g24-ease);
    box-shadow: none;
}

.kontakt-form .btn:hover,
.kontakt-form button[type="submit"]:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.kontakt-form .btn:focus-visible,
.kontakt-form button[type="submit"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(195, 10, 40, .14);
}

@media (max-width: 1199.98px) {
    .kontakt-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kontakt-info .section-title {
        max-width: 100%;
    }

    .kontakt-lead {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .g24-kontakt {
        padding: 4rem 0;
    }

    .kontakt-form-box {
        padding: 1.5rem;
    }

    .kontakt-info .section-title {
        font-size: 2.2rem;
    }

    .form-pill {
        width: 100%;
    }

    .radio-group {
        gap: .6rem;
    }

    .radio-pill {
        width: 100%;
    }

    .radio-pill span {
        width: 100%;
        justify-content: center;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .kontakt-form .btn,
    .kontakt-form button[type="submit"] {
        width: 100%;
        min-width: 100%;
    }

    .kontakt-detail__phone {
        font-size: 2rem;
    }
}

/* ----------------------------------------------------------
   G24 Footer
   ---------------------------------------------------------- */
.g24-footer {
    background: var(--g24-black);
    color: rgba(255, 255, 255, .7);
    padding-top: 4.5rem;
}

/* Footer grid — 4 columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Brand column */
.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-family: var(--g24-font);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin: 0;
    max-width: 300px;
}

/* Override existing .footer-social to match G24 */
.footer-col--brand .footer-social {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    text-decoration: none;
    transition: background var(--g24-ease), color var(--g24-ease), transform var(--g24-ease);
}

.social-btn:hover {
    background: var(--g24-red);
    color: #fff;
    transform: translateY(-2px);
}

/* Nav columns */
.footer-col-title {
    font-family: var(--g24-font);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 1.25rem;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-menu li a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color var(--g24-ease), padding-left var(--g24-ease);
    display: inline-block;
}

.footer-menu li a:hover {
    color: #fff;
    padding-left: .35rem;
}

/* Newsletter column */
.footer-col--newsletter {
    display: flex;
    flex-direction: column;
}

.footer-col--newsletter .footer-col-title {
    margin-bottom: .75rem;
}

.footer-nl-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.footer-nl-form .nl-input-wrap {
    display: flex;
    gap: .5rem;
}

.footer-nl-form input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--g24-radius);
    color: #fff;
    font-family: var(--g24-font);
    font-size: .85rem;
    padding: .65rem 1rem;
    min-width: 0;
    transition: border-color var(--g24-ease);
}

.footer-nl-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .25);
}

.footer-nl-form input[type="email"]:focus {
    outline: none;
    border-color: var(--g24-red);
}

.footer-nl-form .btn-red {
    padding: .65rem 1.2rem;
    font-size: .78rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    margin: 0;
}

.footer-legal {}

.footer-legal ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-legal li a {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color var(--g24-ease);
}

.footer-legal li a:hover {
    color: rgba(255, 255, 255, .7);
}

.footer-dev {
    font-size: .75rem;
    color: rgba(255, 255, 255, .2);
    margin: 0;
}

.footer-dev a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
}

.footer-dev a:hover {
    color: rgba(255, 255, 255, .7);
}

/* ----------------------------------------------------------
   Scroll to Top Button
   ---------------------------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    z-index: 800;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: var(--g24-black);
    border: 2px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease,
        background var(--g24-ease), border-color var(--g24-ease), color var(--g24-ease);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--g24-red);
    border-color: var(--g24-red);
    color: #fff;
    transform: translateY(-4px);
}


/* ==========================================================================
   G24 — Hotfix: class mismatches & layout corrections
   ========================================================================== */

/* #main — pełna szerokość, bez overflow-x */
#main {
    width: 100%;
    overflow-x: hidden;
}

/* Logo — wyższa specyficzność niż stara reguła .header-logo img { display: block } */
.g24-header .header-logo .logo-img--light {
    display: block;
}

.g24-header .header-logo .logo-img--dark {
    display: none;
}

.g24-header.is-solid .header-logo .logo-img--light {
    display: none;
}

.g24-header.is-solid .header-logo .logo-img--dark {
    display: block;
}

.g24-header.is-transparent.is-scrolled .header-logo .logo-img--light {
    display: block;
}

.g24-header.is-transparent.is-scrolled .header-logo .logo-img--dark {
    display: none;
}

/* Hero — explicit full width */
.g24-hero,
.g24-hero-swiper {
    width: 100%;
}


/* Shop card — fallback gdy brak zdjęcia produktu */
.shop-card__no-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g24-gray);
    color: var(--g24-gray-mid);
    font-size: 3rem;
}

/* ==========================================================================
   G24 — Dwurzędowy header: topbar (biały) + mainbar (transparent/dark)
   ========================================================================== */

/* ── Row 1: Topbar — zawsze biały ─────────────────────────────────────── */
.header-topbar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.header-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .6rem 0;
}

/* Nav w topbarze — ciemne linki na białym tle */
.header-topbar .main-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-topbar .main-menu a {
    font-family: var(--g24-font);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--g24-dark);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: .3rem .5rem;
    margin: -.3rem -.5rem;
    overflow: hidden;
    transition: color .25s ease;
    z-index: 0;
}

/* Red fill sweep — slides in from bottom on hover */
.header-topbar .main-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--g24-red);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
}

/* Remove old underline ::after — replaced by fill */
.header-topbar .main-menu a::after {
    display: none;
}

.header-topbar .main-menu a:hover,
.header-topbar .main-menu .current-menu-item>a {
    color: #fff;
}

.header-topbar .main-menu a:hover::before,
.header-topbar .main-menu .current-menu-item>a::before {
    transform: scaleY(1);
}

/* Sub-menu w topbarze */
.header-topbar .main-menu li {
    position: relative;
}

.header-topbar .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + .75rem);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--g24-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    list-style: none;
    padding: .5rem 0;
    z-index: 1100;
}

.header-topbar .main-menu li:hover>.sub-menu {
    display: block;
}

.header-topbar .sub-menu li a {
    display: block;
    padding: .5rem 1.25rem;
    font-size: .82rem;
    white-space: nowrap;
    color: var(--g24-dark);
}

.header-topbar .sub-menu li a:hover {
    color: var(--g24-red);
    background: rgba(195, 10, 40, .04);
}

.header-topbar .sub-menu li a::after {
    display: none;
}



