/* Warranty Page Styles */
.featured-image-header {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.featured-image-header img.wp-image-featured-header {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.featured-image-header img.wp-image-featured-header:hover {
    transform: scale(1.01);
}

.page-template-page-warranty-php h1.entry-title {


    letter-spacing: -1px;
    text-align: center;
    padding: 27px 0;
}

.page-template-page-warranty-php .entry-content-wrap {
    padding: 0;
}
.page-template-page-warranty-php .entry-header {
    margin-bottom: 0;
}

.warranty-terms-container
{
text-align-last: center;
padding-bottom: 27px;
}

.warranty-download-box {
    margin: 20px 0;
    display: inline-block;

    width: 50%;
     position: relative;
         margin-left: auto;
    margin-right: auto;
}
/* 
.warranty-form-container {
    border-radius: 10px;
    padding: 30px;
    font-size: 14px;
    border: 3px solid #c4cd26;
    max-width: 1080px;
    position: relative;
}
.warranty-form-container:before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -25px;

    width: 59px;   
    height: 42px;

    background: #fff url(../../img/wiadomosc.jpg) no-repeat center/45px 36px;
    border-radius: 6px; 

}
*/
.warranty-download-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 2px solid #B8D234;
    border-radius: 15px;
    padding: 10px 30px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.warranty-title:hover {
    transform: scale(1.02); 
    text-decoration: none;
}
.warranty-title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 6px;
      margin-bottom: -5px;
  background-color: #c4cd26; /* kolor ikony */
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4v10"/><path d="M8 11l4 4 4-4"/><path d="M4 20h16"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4v10"/><path d="M8 11l4 4 4-4"/><path d="M4 20h16"/></svg>') no-repeat center;
  mask-size: contain;
}

.warranty-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px;
}

.warranty-title {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.warranty-icon {
    flex-shrink: 0;
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: #fff;
    padding: 0 10px;

}

.warranty-icon img {

    object-fit: contain;
}

@media (max-width: 768px) {
    .warranty-download-box {
        max-width: 100%;
        width: 100%;
    }

    .warranty-download-link {
        padding: 10px 20px;
    }

    .warranty-title {
        font-size: 16px;
    }

    .warranty-icon img {

    }
}

.company-info-sections {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.company-section {
    flex: 1;
    min-width: 280px;
}

.section-title {

    margin-bottom: 20px;
    margin-top: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.company-section .social-icon {
    width: 40px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.company-section .social-icon img {

    object-fit: fill;
}


.facebook-icon img {
    width: 22px;
    height: 45px;
}

.instagram-icon img {
    width: 40px;
    height: 40px;
}

.social-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.social-link a:hover {
    color: #B8D234;
    text-decoration: underline;
}

.company-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .company-info-sections {
        flex-direction: column;
        gap: 40px;
    }

    .company-section {
        min-width: 100%;
    }

    .section-title {
        font-size: 20px;
    }


    .facebook-icon {
        font-size: 18px;
    }

    .social-link a {
        font-size: 14px;
    }

    .company-text {
        font-size: 14px;
    }
}

/* Smooth scroll anchor highlight effect */
.anchor-highlight {
    animation: highlight-fade 1.5s ease-out;
}

@keyframes highlight-fade {
    0% {
        background-color: rgba(255, 204, 0, 0.3);
    }
    100% {
        background-color: transparent;
    }
}