/* =========================================
   1. USTAWIENIA GLOBALNE I RESET
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Proxima Nova', sans-serif;
    color: #000;
    overflow-x: hidden;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #000;
    /* Headers now black */
    --accent-light: rgb(153, 181, 211);
    /* New blue for underlines/accents */
    /* ZMIANA: 0.75 - mocna przezroczystość */
    --white-alpha: rgba(255, 255, 255, 0.75);
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =========================================
   2. NAVBAR I MENU
   ========================================= */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    min-height: 85px;
    background-color: var(--white-alpha) !important;
    /* Tutaj wchodzi 0.75 */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background-color 0.3s, padding 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

#menuTrigger {
    cursor: pointer;
    font-weight: 700;
    transition: color 0.3s;
    border: none;
    background: none;
}

#menuTrigger:hover {
    color: #555 !important;
}

/* Rozwijane menu */
#hiddenMenu {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2000;
    /* Dropdown zostawiam ciut bardziej kryjący (0.95), żeby tekst był czytelny na tle treści */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* Hide content while resizing */
}

/* Fix inner container alignment */
#hiddenMenu .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 50px;
    /* Increased to move text away from edge */
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 25px;
}

/* DESKTOP MENU BEHAVIOR */
@media (min-width: 992px) {
    #hiddenMenu {
        width: 320px;
        /* Initial narrow width */
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        /* Smooth eased transition */
    }

    #hiddenMenu.menu-expanded {
        width: 85% !important;
        /* Expanded width when hovering offer */
    }

    .menu-list-container {
        width: 320px;
        /* Fixed width for the link list */
        flex: 0 0 320px;
    }

    .submenu-container {
        flex: 1;
        /* Take remaining space */
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        /* Prevent clicks when hidden */
    }

    #hiddenMenu.menu-expanded .submenu-container {
        opacity: 1;
        pointer-events: auto;
    }
}

.menu-list-container {
    border-right: 1px solid #eee;
}

.menu-main-link {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #000 !important;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
}

.menu-main-link:hover,
.menu-main-link.active {
    color: var(--accent-light) !important;
}

.menu-sub-link {
    font-size: 0.90rem;
    color: #000 !important;
    display: block;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-sub-link:hover {
    color: var(--accent-light) !important;
    padding-left: 5px;
    transition: all 0.2s;
}

.submenu-container {
    /* min-height removed */
    display: flex;
    align-items: flex-start;
}

#ofertaContent {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    width: 100%;
}

/* =========================================
   3. SEKCJE GŁÓWNE (Hero, Ikony, Licznik)
   ========================================= */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    background: url('images/zdj strona główna.jpg') no-repeat center center;
    background-size: cover;
    margin-top: 85px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 45, 60, 0.5);
}

.hero-title {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.hero-footer {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

/* Marker tytułów */
.section-title-highlight {
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 50%;
    background-color: var(--accent-light);
    z-index: -1;
    border-radius: 0;
}

/* Ikony */
.icon-wrapper {
    cursor: pointer;
}

.icon-box {
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    aspect-ratio: 1/1;
}

.icon-bg,
.icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease-in-out;
}

.icon-bg {
    opacity: 1;
}

.icon-hover {
    opacity: 0;
}

.icon-wrapper:hover .icon-bg {
    opacity: 0;
}

.icon-wrapper:hover .icon-hover {
    opacity: 1;
}

/* Jak zamówić */
.step-wrapper {
    position: relative;
    padding-left: 10px;
}

.step-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 55px;
    height: 55px;
    background-color: var(--accent-light);
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
}

.step-number {
    position: relative;
    z-index: 1;
    display: block;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-top: 10px;
    padding-left: 15px;
    background-color: transparent;
}

.step-description {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    padding-left: 15px;
}

/* Licznik */
.counter-section {
    background: url('images/image_b0f81c.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.z-index-1 {
    z-index: 1;
}

/* =========================================
   4. PODSTRONA OFERTA (ZDJĘCIA W KOŁACH)
   ========================================= */
.offer-intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.offer-item {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-title {
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.offer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.fefco-icon-wrapper {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

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

/* --- GŁÓWNY STYL DLA ZDJĘĆ W KOŁACH --- */
.product-circle-img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    padding: 0;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-circle-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-light);
}

.product-circle-img.gallery-item {
    max-width: 160px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.gallery-grid figure {
    text-align: center;
    margin: 0;
    width: 160px;
}

.gallery-caption {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.tech-img {
    width: 100%;
    height: auto;
    border: none;
    display: block;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    padding-left: 0;
}

.offer-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.offer-list li::before {
    content: '•';
    color: var(--accent-light);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* =========================================
   5. PODSTRONA KONTAKT I FORMULARZ
   ========================================= */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    border-left: 6px solid var(--accent-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 0;
    background-color: #fff;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(158, 188, 216, 0.2);
    outline: none;
}

.btn-submit {
    background-color: var(--accent-light) !important;
    color: #333 !important;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #8daecb !important;
    color: #000 !important;
}

.contact-info-box {
    padding: 30px;
    height: 100%;
    border: 1px solid #eee;
    border-top: 4px solid var(--accent-light);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.contact-header {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.contact-details strong {
    color: #000;
}

.map-container,
.map-frame {
    width: 100%;
    height: 350px;
    background-color: #eee;
    border: 1px solid #ddd;
}

.map-title {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.btn-navigate {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-light);
    transition: color 0.3s;
}

.btn-navigate:hover {
    color: var(--accent-light);
}

.text-accent {
    color: var(--accent-light) !important;
}

/* =========================================
   6. PODSTRONA BLOG
   ========================================= */
.blog-section {
    padding: 60px 0;
    background-color: #fff;
}

.blog-card {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-meta span {
    color: var(--accent-light);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--accent-light);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s, gap 0.3s;
    gap: 5px;
}

.read-more-btn:hover {
    color: var(--accent-light);
    gap: 10px;
}

.pagination .page-link {
    color: var(--primary-blue);
    border: none;
    margin: 0 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-blue);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #eee;
    color: var(--primary-blue);
}

/* =========================================
   7. PODSTRONA CERTYFIKATY
   ========================================= */
.cert-row {
    padding: 20px 0;
}

.cert-img-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cert-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cert-img-wrapper:hover .cert-img {
    transform: scale(1.03);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-overlay i {
    color: #fff;
    font-size: 2.5rem;
}

.cert-img-wrapper:hover .cert-overlay {
    opacity: 1;
}

.cert-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.cert-title-highlight {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.cert-title-highlight::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 3px;
    width: 105%;
    height: 12px;
    background-color: var(--accent-light);
    z-index: -1;
    border-radius: 2px;
    opacity: 0.7;
}

/* =========================================
   8. PODSTRONA WYCENA
   ========================================= */
.quote-banner {
    position: relative;
    background: url('images/zdjecie o nas 3 - GÓRNA LINIA.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 400px;
    margin-top: 85px;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.4));
}

.quote-title {
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.quote-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.form-section-title {
    color: var(--accent-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mt-n5 {
    margin-top: -80px !important;
}

/* =========================================
   9. STOPKA
   ========================================= */
.footer-custom {
    background-color: var(--accent-light);
    color: #333;
    font-size: 0.85rem;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 60px;
}

.footer-custom h6 {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-custom p,
.footer-custom a {
    color: #333;
    text-decoration: none;
    line-height: 1.6;
}

.footer-custom a:hover {
    text-decoration: underline;
    color: #000;
}

.footer-logo {
    max-height: 100px;
    margin-bottom: 15px;
}

.social-icon {
    font-size: 1.2rem;
    color: #333;
    transition: transform 0.2s;
    display: inline-block;
    margin-right: 10px;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* =========================================
   10. O NAS / LIGHTBOX
   ========================================= */
.page-title-container {
    margin-top: 120px;
    margin-bottom: 60px;
}

.page-title {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary-blue);
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 8px;
    width: 60px;
    background-color: var(--accent-light);
}

.text-box {
    border: 1px solid #ddd;
    padding: 40px;
    height: 100%;
    background: #fff;
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: none !important;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.05);
}

#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1101;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1101;
}

.modal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prev {
    left: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================================
   11. PODSTRONA FEFCO
   ========================================= */
.fefco-tabs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.fefco-tab {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.fefco-tab:hover,
.fefco-tab.active {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    transform: translateY(-2px);
}

.fefco-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fefco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-light);
}

.fefco-code {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.fefco-name {
    font-weight: 700;
    color: #444;
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.4;
}

/* =========================================
   12. MEDIA QUERIES (RWD)
   ========================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .mt-n5 {
        margin-top: 30px !important;
    }

    .quote-title {
        font-size: 2rem;
    }

    .quote-banner {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .flex-row-reverse {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .text-md-end {
        text-align: left !important;
    }

    .pe-md-5,
    .ps-md-5 {
        padding: 0 !important;
    }

    .cert-title-highlight::after {
        width: 80%;
    }

    .counter-section,
    .quote-banner {
        background-attachment: scroll;
    }
}

/* Scroll Reveal Animation */
#scroll-reveal-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

#scroll-reveal-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Styles */
.toc-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

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

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.blog-post-content h2 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-post-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
}

.related-posts-title {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

/* Remove default focus outline for a cleaner look */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus,
.btn-check:focus+.btn,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Add a subtle shadow ONLY for text inputs when focused, instead of the strong border */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 153, 0.1) !important;
    /* Subtle primary color glow */
    border-color: var(--primary-blue) !important;
}

/* Fix for circular images in Offer */
.product-circle-img {
    border-radius: 50% !important;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Remove borders from badges and form elements if requested */
.badge {
    border: none !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(153, 181, 211, 0.25) !important;
    /* Lighter blue shadow */
    border-color: var(--accent-light) !important;
}