/* ====================================
   GLOBALNE USTAWIENIA PODSTRON
==================================== */

.about-hero,
.about-text,
.about-stats,
.about-model,
.about-closing,
.katalog,
.kontakt,
.legal {
    padding: 140px 0;
}

/* ====================================
   O NAS – HERO
==================================== */

.about-hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(25, 83, 6, 0.08),
        transparent 50%
    );
}

.about-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    max-width: 900px;
}

.about-line {
    display: block;
    width: 90px;
    height: 3px;
    background: #195306;
    margin: 45px 0;
}

.about-sub {
    font-size: 20px;
    color: #555;
    max-width: 720px;
    line-height: 1.7;
}


/* ====================================
   O NAS – TEKST
==================================== */

.about-text p {
    font-size: 18px;
    max-width: 850px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 32px;
}


/* ====================================
   STATYSTYKI
==================================== */

.about-stats {
    background: #f7f8f6;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #195306;
    display: block;
    margin-bottom: 12px;
}

.about-stats p {
    color: #555;
    font-size: 15px;
}


/* ====================================
   MODEL WSPÓŁPRACY
==================================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.about-grid > div {
    border-left: 3px solid #195306;
    padding-left: 28px;
    transition: 0.3s ease;
}

.about-grid > div:hover {
    transform: translateY(-6px);
}

.about-grid h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.about-grid p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}


/* ====================================
   ZAMKNIĘCIE
==================================== */

.about-closing {
    background: #f7f8f6;
    text-align: center;
}

.about-closing h2 {
    font-size: 34px;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.35;
}


/* ====================================
   KATALOG
==================================== */

.katalog-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.katalog-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.katalog-header h1 {
    font-size: 46px;
    margin-bottom: 24px;
}

.katalog-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* VIEWER */

.katalog-viewer {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0,0,0,0.08);
    margin-bottom: 80px;
}

.katalog-viewer iframe {
    display: block;
    border: none;
}

/* DOWNLOAD */

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

.katalog-download-btn {
    display: inline-block;
    padding: 20px 48px;
    background: linear-gradient(135deg, #195306, #2e7a12);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 25px 60px rgba(25,83,6,0.25);
}

.katalog-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 80px rgba(25,83,6,0.35);
}


/* ====================================
   KONTAKT
==================================== */

.kontakt {
    text-align: center;
    position: relative;
    background: #ffffff;
}

.kontakt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(25, 83, 6, 0.06) 0%,
        rgba(25, 83, 6, 0.02) 40%,
        rgba(255,255,255,0) 75%
    );
    pointer-events: none;
}

.kontakt-wrap {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.kontakt h1 {
    font-size: 46px;
    margin-bottom: 30px;
}

.kontakt-lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 80px;
    line-height: 1.7;
}

.kontakt-big {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.kontakt-phone {
    font-size: 44px;
    font-weight: 600;
    color: #195306;
    text-decoration: none;
    transition: 0.3s ease;
}

.kontakt-phone:hover {
    opacity: 0.8;
}

.kontakt-mail {
    font-size: 30px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: 0.3s ease;
}

.kontakt-mail:hover {
    color: #195306;
}

.kontakt-separator {
    width: 70px;
    height: 2px;
    background: #ddd;
}


/* ====================================
   POLITYKA PRYWATNOŚCI
==================================== */

.legal-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.legal h1 {
    font-size: 42px;
    margin-bottom: 60px;
}

.legal h2 {
    font-size: 18px;
    margin-top: 45px;
    margin-bottom: 15px;
    color: #195306;
    font-weight: 600;
}

.legal p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.legal a {
    color: #195306;
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}


/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1000px) {

    .about-stats-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 700px) {

    .kontakt h1 {
        font-size: 34px;
    }

    .kontakt-phone {
        font-size: 28px;
    }

    .kontakt-mail {
        font-size: 22px;
    }

    .legal h1 {
        font-size: 30px;
    }
}

/* ===============================
   KATALOG RESPONSIVE
================================ */

.katalog-mobile {
    display: none;
}

.desktop-download {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 900px) {

    .katalog-desktop {
        display: none;
    }

    .katalog-mobile {
        display: block;
        text-align: center;
    }

    .katalog-mobile-btn {
        padding: 22px 50px;
        font-size: 18px;
    }
}

.iholo-product-page {
	padding: 80px 20px;
}

.iholo-product-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

/* LEWA - GALERIA */
.iholo-product-left {
	width: 100%;
}

.iholo-product-left img {
	width: 100%;
	border-radius: 16px;
}

/* PRAWA - SUMMARY */
.iholo-product-right {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding-top: 20px;
}

/* Tytuł */
.iholo-product-right h1 {
	font-size: 34px;
	line-height: 1.2;
	margin: 0;
}

/* Cena */
.iholo-product-right .price {
	font-size: 28px;
	font-weight: 600;
}

/* Cena promocyjna */
.iholo-product-right .price del {
	opacity: 0.5;
	margin-right: 10px;
}

.iholo-product-right .price ins {
	text-decoration: none;
}

/* Stock */
.iholo-product-right .stock {
	font-size: 14px;
	opacity: 0.7;
}

/* Quantity */
.iholo-product-right .quantity input {
	width: 70px;
	height: 42px;
	border-radius: 8px;
	border: 1px solid #ddd;
	text-align: center;
}

/* PRZYCISK */
.iholo-product-right .single_add_to_cart_button {
	background: #2e7d32;
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 16px 28px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s;
	width: fit-content;
}

.iholo-product-right .single_add_to_cart_button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* META (SKU itd) - WYŁĄCZ */
.product_meta {
	display: none;
}

/* BOTTOM */
.iholo-product-bottom {
	max-width: 1000px;
	margin: 80px auto 0;
}

/* Tabs cleanup */
.woocommerce-tabs ul.tabs {
	border-bottom: 1px solid #eee;
	padding-left: 0;
}

.woocommerce-tabs ul.tabs li {
	background: none;
	border: none;
	margin-right: 20px;
}

.woocommerce-tabs ul.tabs li a {
	font-weight: 500;
}

/* =========================
   IHolo – PRODUCT PAGE
========================= */

.iholo-product-page {
    padding: 120px 0;
}

.iholo-product-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 100px;
    align-items: start;
}

/* =========================
   STICKY IMAGE
========================= */

.iholo-product-left {
    position: sticky;
    top: 140px;
    align-self: start;
    display: flex;
    justify-content: center;
}

.iholo-product-left img {
    width: 380px;
    height: 380px;
    object-fit: contain;
}

/* =========================
   RIGHT SIDE
========================= */

.iholo-product-right {
    display: flex;
    flex-direction: column;
}

.iholo-product-title {
    font-size: 34px;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* =========================
   CONFIG SELECTS
========================= */

.iholo-config-step {
    margin-bottom: 22px;
}

.iholo-config-step label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.iholo-config-step select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #f5f5f5;
}

/* =========================
   PRICE BOX
========================= */

.iholo-price-box {
    margin-top: 40px;
    padding: 40px;
    border-radius: 28px;
    background: #f8f8f8;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

/* CENA */

.price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price del {
    opacity: 0.4;
    margin-right: 10px;
}

.price ins {
    text-decoration: none;
}

/* DODATKOWE INFO */

.iholo-price-label {
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.6;
}

.iholo-price-secondary {
    font-size: 14px;
    opacity: 0.75;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

/* =========================
   QTY
========================= */

.quantity input {
    width: 70px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 20px;
}

/* =========================
   BUTTON
========================= */

.single_add_to_cart_button {
    margin-top: 25px;
    padding: 18px 30px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    width: 100%;
}

.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================
   CLEANUP
========================= */

.product_meta {
    display: none;
}

.wp-armour-notice {
    display: none !important;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1024px) {

    .iholo-product-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .iholo-product-left {
        position: relative;
        top: 0;
    }

    .iholo-product-left img {
        width: 260px;
        height: auto;
    }

}

.iholo-product-bottom {
    margin-top: 120px;
}

.iholo-product-bottom-inner {
    max-width: 900px;
    margin: 0 auto;
}

.woocommerce-tabs {
    margin-top: 40px;
}

.woocommerce-tabs .panel {
    margin-top: 30px;
    line-height: 1.7;
}

.woocommerce-tabs h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* =========================
   IHolo – KATALOG
========================= */

.iholo-catalog {
    padding: 120px 0;
}

.iholo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.iholo-title {
    font-size: 36px;
    margin-bottom: 40px;
}

/* 🔥 FILTRY */

.iholo-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.iholo-filters button {
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
}

.iholo-filters button.active {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

/* 🔥 GRID */

.iholo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 🔥 KARTA */

.iholo-product-card {
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    transition: 0.3s;
}

.iholo-product-card:hover {
    transform: translateY(-5px);
}

.iholo-card-img img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.iholo-card-body h3 {
    font-size: 18px;
    margin: 10px 0;
}

.iholo-card-price {
    font-weight: 600;
}

/* 🔥 MOBILE */

@media (max-width: 1024px) {
    .iholo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}