:root {
    --gold: #947e42;
    --gold-light: #b59a5e;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --text-light: #8a8a8a;
    --bg-light: #f9f9f9;
    --white: #FFFFFF;
    --border-light: #eaeaea;
}

.led-description {
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.featured-block {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.featured-block:hover {
    box-shadow: 0 10px 30px rgba(148, 126, 66, 0.08);
    transform: translateX(3px);
}

.featured-block .led-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 0;
}

.featured-block .led-text strong {
    color: var(--gold);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.featured-block .led-text strong::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.featured-quote-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(148, 126, 66, 0.08);
    font-family: serif;
    pointer-events: none;
}

.led-text-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.led-text-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.led-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.led-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.led-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-top: 0.8rem;
}

.led-text strong {
    color: var(--gold);
    font-weight: 600;
}

.center-title {
    text-align: center;
    margin: 2.5rem 0 1.5rem;
}

.center-title .led-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.temp-gallery {
    margin: 3rem 0;
}

.temp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temp-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.temp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(148, 126, 66, 0.1);
    border-color: var(--gold-light);
}

.temp-label {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.temp-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.temp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.temp-card:hover .temp-image img {
    transform: scale(1.03);
}

.global-blocks {
    margin-top: 4rem;
}

.info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-light);
}

.info-content {
    padding: 2rem;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

.info-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.info-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.info-link:hover {
    color: var(--gold-light);
    gap: 0.5rem;
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f2ed 0%, #eae6df 100%);
    padding: 1.5rem;
}

.info-image img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.info-block:hover .info-image img {
    transform: scale(1.05);
}

.info-block.reverse {
    direction: ltr;
}

.info-block.reverse .info-content {
    order: 2;
}

.info-block.reverse .info-image {
    order: 1;
}

.social-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
}

.social-content {
    padding: 2rem;
    color: white;
}

.social-content .info-title {
    color: white;
    border-left-color: white;
}

.social-content .info-text {
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.4rem;
    color: white;
}

.social-icon:hover {
    background: white;
    color: var(--gold);
    transform: translateY(-5px);
}

.social-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    height: 100%;
}

.social-image img {
    max-width: 140px;
    height: auto;
    border-radius: 12px;
}

.payment-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    align-items: center;
    border: 1px solid var(--border-light);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.payment-item {
    background: var(--white);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.payment-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.payment-item img {
    max-width: 45px;
    min-height: 45px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 0.5rem;
}

.payment-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.payment-image-small {
    text-align: center;
    flex-shrink: 0;
}

.payment-image-small img {
    max-width: 140px;
    height: auto;
    border-radius: 12px;
}

.button-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    font-size: 0.95rem;
}

.gold-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(148, 126, 66, 0.3);
    letter-spacing: 0.3px;
}

.legal-info {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.8rem;
    margin-top: 2rem;
}

.legal-info h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.legal-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    .product-description-wrapper {
        padding: 1.5rem;
    }

    .temp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-block,
    .social-block,
    .payment-block {
        grid-template-columns: 1fr;
    }

    .info-block.reverse .info-content,
    .info-block.reverse .info-image {
        order: unset;
    }

    .button-links {
        grid-template-columns: 1fr;
    }

    .payment-block {
        grid-template-columns: 1fr;
    }

    .payment-image-small {
        text-align: center;
        order: -1;
    }

    .featured-block {
        padding: 1.8rem;
    }

    .featured-block .led-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-description-wrapper {
        padding: 1rem;
    }

    .led-text-block,
    .featured-block {
        padding: 1.5rem;
    }

    .info-content {
        padding: 1.5rem;
    }
}

/* ==========================================================
    Standardowe rozmiary — blok zmiennej "wymiary"
    Wrapper niesie .led-text-block (pudełko z palety) + .abc-std-dimensions.
    Nagłówek = .led-title. Tu tylko lista pigułek i notka.
    ========================================================== */
.abc-std-dimensions .abc-dim-list {
    list-style: none;
    margin: 1.3rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.abc-std-dimensions .abc-dim-item {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e6dfce;
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 0.55rem 1.15rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.abc-std-dimensions .abc-dim-item:hover {
    color: var(--gold);
    border-color: var(--gold-light);
    border-left-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(148, 126, 66, 0.12);
}

.abc-std-dimensions .abc-dim-note {
    margin: 1.5rem 0 0;
    padding-top: 1.1rem;
    border-top: 1px dashed var(--border-light);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.abc-std-dimensions .abc-dim-note strong {
    color: var(--text-gray);
    font-weight: 600;
}

.abc-std-dimensions .abc-dim-note a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.abc-std-dimensions .abc-dim-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .abc-std-dimensions .abc-dim-item {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================
    Realizacja na zamówienie / kontakt (osobny opis globalny).
    Korzysta z .led-text-block + .led-text (paleta). Tu tylko link.
    ========================================================== */
.abc-custom-order .led-text a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.abc-custom-order .led-text a:hover {
    text-decoration: underline;
}