/* =========================
GLOBAL SETTINGS
========================= */


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}



body {

    background: white;

    color: #123;

    line-height: 1.6;

}



img {

    max-width: 100%;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

}



.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

}



section {

    padding: 90px 0;

}







/* =========================
HEADER
========================= */


header {

    position: sticky;

    top: 0;

    height: 120px;

    background: white;

    z-index: 999;

    box-shadow:

        0 5px 20px rgba(0, 0, 0, .08);

}





.navbar {

    height: 120px;

    width: 95%;

    max-width: 1500px;

    margin: auto;

    display: flex;

    align-items: center;

}





.brand-area {

    display: flex;

    align-items: center;

}



.logo-card {

    width: 95px;

    height: 95px;

    background: white;

    border-radius: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    box-shadow:

        0 8px 25px rgba(0, 0, 0, .15);

}



.logo-card img {

    width: 90%;

    height: 90%;

    object-fit: contain;

}







/* SEARCH */


.search-box {

    margin-left: auto;

    margin-right: 25px;

}



.search-box input {

    width: 210px;

    height: 45px;

    border-radius: 25px;

    border: 1px solid #ddd;

    padding: 0 20px;

    font-size: 15px;

    outline: none;

}



.search-box input:focus {

    border-color: #0077c8;

}







/* NAVIGATION */


.nav-menu {

    display: flex;

    gap: 45px;

    list-style: none;

    margin-left: auto;

    justify-content: flex-end;

}



.nav-menu a {

    font-size: 18px;

    font-weight: 700;

    transition: .3s;

}



.nav-menu a:hover {

    color: #0077c8;

}







/* =========================
BUTTON
========================= */


.btn {

    display: inline-block;

    padding: 14px 35px;

    border-radius: 30px;

    background: #0077c8;

    color: white;

    font-weight: 700;

    transition: .3s;

}



.btn:hover {

    background: #005fa3;

    transform: translateY(-3px);

}





.btn-light {

    background: white;

    color: #0077c8;

}







/* =========================
HERO
========================= */


.hero-new {

    height: 800px;

    background-image:

        url("../images/banner1.jpg");

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}



.hero-img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 1;

}



.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(90deg,

            rgba(0, 0, 0, .55),

            rgba(0, 0, 0, .15));

    z-index: 2;

}



.hero-content {

    position: relative;

    z-index: 3;

    width: 90%;

    max-width: 1400px;

    margin: auto;

    color: white;

}



.hero-content h1 {

    font-size: 60px;

    font-weight: 900;

    line-height: 1.15;

}



.hero-content p {

    font-size: 22px;

    margin-top: 25px;

}







/* =========================
SECTION TITLE
========================= */


.section-title {

    text-align: center;

    margin-bottom: 70px;

}



.section-title h2 {

    font-size: 42px;

    font-weight: 900;

    color: #123;

}



.section-title p {

    font-size: 18px;

    color: #666;

}



/* =========================
PRODUCT CARDS
========================= */


.products-grid {

    display: grid;

    grid-template-columns:

        repeat(3, 1fr);

    gap: 30px;

}



.product-card {

    background: white;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}



.product-card:hover {

    transform:

        translateY(-10px);

}



.product-card img {

    height: 260px;

    width: 100%;

    object-fit: cover;

}



.product-content {

    padding: 30px;

}



.product-tag {

    font-size: 14px;

    font-weight: 800;

    color: #0077c8;

}



.product-content h3 {

    font-size: 25px;

    margin: 12px 0;

}








/* =========================
PRODUCT COLLECTIONS
========================= */


.collections-grid {

    display: grid;

    grid-template-columns:

        repeat(5, 1fr);

    gap: 20px;

}



.collection-card {

    height: 500px;

    border-radius: 25px;

    overflow: hidden;

    position: relative;

}



.collection-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}



.collection-card:hover img {

    transform:

        scale(1.1);

}



.collection-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(transparent,

            rgba(0, 0, 0, .65));

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color: white;

}



.collection-overlay h3 {

    font-size: 28px;

    font-weight: 900;

}



.collection-overlay span {

    margin-top: 10px;

    font-size: 15px;

    opacity: .9;

}








/* =========================
ABOUT PAGE
========================= */


.about-grid {

    display: grid;

    grid-template-columns:

        repeat(2, 1fr);

    gap: 60px;

    align-items: center;

}



.about-image img {

    border-radius: 30px;

}



.about-text h2 {

    font-size: 42px;

    margin-bottom: 25px;

}



.about-text p {

    font-size: 17px;

    color: #555;

    margin-bottom: 20px;

}








/* =========================
CONTACT
========================= */

/* =========================
CONTACT
========================= */

.contact-container {
    display: grid;
    grid-template-columns: minmax(460px, .92fr) minmax(0, 1.08fr);
    gap: 52px;
    align-items: stretch;
}

.contact-info {
    position: relative;
    min-height: 100%;
    padding: 48px;
    border-radius: 30px;
    background: linear-gradient(145deg, #f8fbfd 0%, #eef6fb 100%);
    border: 1px solid rgba(0, 119, 200, .14);
    box-shadow: 0 18px 45px rgba(18, 51, 74, .08);
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(0, 119, 200, .08);
}

/* Keep both card headings visually identical. */
.contact-info h2,
.customer-service h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #123;
}

.contact-info>p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.95;
    color: #4f5f6d;
}

.contact-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
    height: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
    min-height: 94px;
    padding: 17px 22px;
    border-radius: 21px;
    background: #fff;
    border: 1px solid rgba(18, 51, 74, .08);
    box-shadow: 0 10px 26px rgba(18, 51, 74, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 51, 74, .12);
    border-color: rgba(0, 119, 200, .25);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 50%;
    background: #0077c8;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.contact-item>div:nth-child(2) {
    min-width: 0;
}

.contact-item h4 {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #123;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #667684;
    overflow-wrap: anywhere;
}

.contact-arrow {
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 25px;
    line-height: 1;
    color: #0077c8;
    transition: transform .3s ease;
}

.contact-item:hover .contact-arrow {
    transform: translateX(3px);
}

/* =========================
CUSTOMER SERVICE
========================= */

.customer-service {
    background: #fff;
    padding: 38px 40px;
    border-radius: 30px;
    box-shadow: 0 14px 38px rgba(18, 51, 74, .09);
    border-top: 4px solid #0077c8;
}

.customer-service p {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.customer-service p:last-child {
    margin-bottom: 0;
}

/* =========================
CONTACT FORM
========================= */


.contact-form {


    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .08);

}



.contact-form input,
.contact-form textarea {


    width: 100%;

    padding: 16px;

    margin-bottom: 18px;

    border-radius: 15px;

    border: 1px solid #ddd;

    font-size: 16px;

    outline: none;


}



.contact-form textarea {


    resize: none;


}




/* =========================
FACTORY VISIT
========================= */


.factory-visit {

    background: #e9eef2;

}






.factory-text {


    background: white;

    padding: 50px;

    border-radius: 30px;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .08);

    width: 100%;

    margin: auto;

}





.factory-text p {


    font-size: 17px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 25px;


}





.factory-text h3 {


    font-size: 25px;

    color: #0077c8;

    margin-bottom: 15px;


}









/* =========================
GOOGLE MAP
========================= */


.map {


    border-radius: 30px;

    overflow: hidden;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .1);


}





.map iframe {


    width: 100%;

    height: 500px;

    border: 0;


}









/* =========================
FOOTER
========================= */


footer {


    background: #1f2933;

    color: white;

    padding: 70px 0 25px;


}





.footer-container {


    width: 90%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:

        2fr 1fr 1fr;

    gap: 50px;


}





.footer-about h2 {


    font-size: 42px;

    margin-bottom: 20px;


}





.footer-about p {


    color: #cbd5e1;


}





.footer-links {


    display: flex;

    flex-direction: column;

    gap: 15px;


}





.footer-links h3,
.footer-social h3 {


    font-size: 22px;

    margin-bottom: 20px;


}





.footer-links a {


    color: #ddd;

    transition: .3s;


}





.footer-links a:hover {


    color: #00a8ff;


}








/* FOLLOW US ICONS */


.social-icons {


    display: grid;

    grid-template-columns:

        repeat(3, 45px);

    gap: 20px;


}





.social-icons a {


    width: 45px;

    height: 45px;

    background: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: background-color .3s ease;


}





.social-icons a:hover {


    background-color: #0060A9;

    transform: none;


}





.social-icons img {


    width: 28px;

    height: 28px;

    object-fit: contain;

    transition: filter .3s ease;


}


.social-icons a:hover img {

    filter: brightness(0) invert(1);

}








.copyright {


    text-align: center;

    margin-top: 50px;

    padding-top: 20px;

    border-top:

        1px solid rgba(255, 255, 255, .15);

    color: #aaa;


}









/* =========================
WHATSAPP FLOAT BUTTON
========================= */


.whatsapp-float {


    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 60px;

    height: 60px;

    background: #25d366;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;


}





.whatsapp-float img {


    width: 35px;

    height: 35px;


}









/* =========================
RESPONSIVE
========================= */


@media(max-width:1200px) {



    .collections-grid {


        grid-template-columns:

            repeat(3, 1fr);


    }



    .nav-menu {


        gap: 25px;


    }



}





@media(max-width:900px) {



    .navbar {


        height: auto;

        padding: 20px 0;

        flex-wrap: wrap;


    }





    .search-box {


        order: 3;

        width: 100%;

        margin: 15px 0 0;


    }





    .search-box input {


        width: 100%;


    }





    .nav-menu {


        width: 100%;

        justify-content: flex-end;

        flex-wrap: wrap;


    }






    .products-grid,
    .factory-grid,
    .contact-container,
    .about-grid {


        grid-template-columns:

            1fr;


    }





    .collections-grid {


        grid-template-columns:

            repeat(2, 1fr);


    }





    .footer-container {


        grid-template-columns:

            1fr;

        text-align: center;


    }





    .social-icons {


        justify-content: center;


    }


}









@media(max-width:600px) {



    header,
    .navbar {


        height: auto;


    }





    .logo-card {


        width: 70px;

        height: 70px;


    }





    .hero-new {


        height: 420px;


    }





    .hero-content h1 {


        font-size: 38px;


    }





    .hero-content p {


        font-size: 18px;


    }





    .section-title h2 {


        font-size: 32px;


    }





    .collections-grid {


        grid-template-columns:

            1fr;


    }





    .collection-card {


        height: 420px;


    }





    .factory-text {


        padding: 30px;


    }





    .map iframe {


        height: 350px;


    }



}

/* Contact page responsive refinements */
@media(max-width:1200px) {
    .contact-container {
        grid-template-columns: minmax(400px, .95fr) minmax(0, 1.05fr);
        gap: 40px;
    }
}

@media(max-width:900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-side {
        height: auto;
    }
}

@media(max-width:700px) {
    .contact-info {
        padding: 34px 26px;
    }

    .contact-info h2,
    .customer-service h2 {
        font-size: 28px;
    }

    .contact-info>p {
        font-size: 16px;
        line-height: 1.8;
    }

    .contact-item {
        min-height: 78px;
        padding: 13px 16px;
        gap: 14px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 20px;
    }

    .contact-item h4 {
        font-size: 17px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .customer-service {
        padding: 30px 26px;
    }
}



/* Updated transparent logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-link img {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: .3s;
}

.logo-link:hover img {
    transform: scale(1.05);
}

/* Updated footer typography */
.footer-links h3,
.footer-social h3,
.footer-about h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Catalog banner */
.catalog-section {
    padding: 110px 0 120px;
}

.catalog-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    padding: 90px 80px;
    background: linear-gradient(135deg, #06243d, #0077c8);
    color: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.catalog-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.catalog-content h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.catalog-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 40px;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 40px;
    background: white;
    color: #0077c8;
    font-weight: 800;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px
}

.logo-link img {
    width: 95px;
    height: 95px;
    object-fit: contain
}

.footer-links h3,
.footer-social h3,
.footer-about h2 {
    font-size: 22px;
    font-weight: 700
}

.catalog-box {
    background: linear-gradient(135deg, #b9e8ff, #0878c9) !important;
    text-align: center
}

.catalog-content {
    max-width: 900px;
    margin: auto;
    text-align: center
}

.catalog-content h2 {
    font-size: 42px
}

.catalog-content p {
    text-align: left
}

.team-section {
    padding: 100px 0
}

.team-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: auto
}

.team-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
    background: #f7f7f7
}

.team-profile.reverse .team-media {
    order: 2
}

.team-media img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.team-text {
    padding: 50px
}

.team-name {
    font-size: 52px;
    font-weight: 900
}

.team-role {
    font-size: 28px;
    margin-bottom: 25px
}

.team-text p {
    font-size: 18px;
    line-height: 1.75
}

@media(max-width:900px) {
    .team-profile {
        grid-template-columns: 1fr
    }

    .team-profile.reverse .team-media {
        order: 0
    }
}

/* ===== Final requested updates ===== */
.logo-link:hover img {
    transform: none !important;
}

.catalog-box {
    background: linear-gradient(135deg, #b9e8ff, #0878c9) !important;
    text-align: center;
}

.catalog-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.catalog-content h2 {
    margin-bottom: 45px;
}

.catalog-content p {
    margin-bottom: 55px;
    text-align: left;
}

.catalog-btn,
.btn-light {
    border-radius: 12px !important;
    transition: none !important;
}

.catalog-btn:hover,
.btn-light:hover {
    background: white !important;
    color: #0077c8 !important;
    transform: none !important;
    box-shadow: none !important;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.why-item.reverse .why-media,
.why-item.reverse .why-image {
    order: 2;
}

.why-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
}

.why-content h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 15px;
}

.why-line {
    height: 2px;
    background: #111;
    width: 100%;
    margin-bottom: 25px;
}

.why-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: .8s ease;
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: none;
}

.about-gallery-slider {
    margin: 70px 0 90px;
}

.gallery-slider-container {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .8s;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: white;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
}

.gallery-prev {
    left: 35px
}

.gallery-next {
    right: 35px
}

.gallery-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.gallery-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 0;
    background: white;
    opacity: .55;
    cursor: pointer;
}

.gallery-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.team-profile {
    height: 650px !important;
    overflow: hidden;
}

.team-media,
.team-text {
    height: 650px !important;
}

.team-media img {
    height: 100% !important;
    object-fit: cover;
}

.team-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(max-width:900px) {

    .team-profile,
    .team-media,
    .team-text {
        height: auto !important;
    }

    .why-item {
        grid-template-columns: 1fr;
    }

    .gallery-slider-container {
        height: 350px;
    }
}


/* Founder Quote Section */
.founder-quote-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.founder-quote-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -80px;
    left: -10px;
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
    color: #999;
    opacity: .45;
    z-index: 0;
    font-family: Georgia, serif;
}

.founder-quote-content {
    position: relative;
    z-index: 2;
    padding: 30px 50px;
}

.quote-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.35;
    color: #111;
    max-width: 1000px;
}

.quote-author {
    margin-top: 35px;
    text-align: right;
    font-size: 20px;
    color: #222;
    padding-right: 30px;
}

/* Why Choose title alignment only */
.why-item:not(.reverse) .why-content h3 {
    text-align: right;
}

.why-item.reverse .why-content h3 {
    text-align: left;
}

.why-content p {
    text-align: left;
}

.why-item:not(.reverse) .why-line {
    margin-left: auto;
}

.why-item.reverse .why-line {
    margin-left: 0;
}

@media(max-width:900px) {
    .quote-text {
        font-size: 24px;
    }

    .quote-author {
        font-size: 17px;
    }

    .quote-mark {
        font-size: 150px;
    }
}
/* Catalog download content spacing (index & products pages) */
.catalog-box > h2 {
    margin-bottom: 42px;
}

.catalog-box > p {
    max-width: 980px;
    margin: 0 auto 52px;
    line-height: 1.85;
    text-align: left;
}

/* Product showcase filter controls */
.product-filter {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 12px minmax(0, 1fr)
        30px
        minmax(0, 1fr) 12px minmax(0, 1fr)
        30px
        minmax(0, 1fr) 12px minmax(0, 1fr);
    gap: 0;
    margin: 0 0 44px;
}

.product-filter .filter-btn:nth-child(1) { grid-column: 1; }
.product-filter .filter-btn:nth-child(2) { grid-column: 3; }
.product-filter .filter-btn:nth-child(3) { grid-column: 5; }
.product-filter .filter-btn:nth-child(4) { grid-column: 7; }
.product-filter .filter-btn:nth-child(5) { grid-column: 9; }
.product-filter .filter-btn:nth-child(6) { grid-column: 11; }

.filter-btn {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 72px;
    padding: 18px 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 200, .22);
    border-radius: 20px;
    background: #fff;
    color: #123;
    box-shadow: 0 10px 26px rgba(18, 51, 74, .08);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .35px;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.filter-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0077c8, #00a8ff);
    opacity: 0;
    transition: opacity .3s ease;
}

.filter-btn::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -35%;
    width: 28%;
    height: 220%;
    background: rgba(255, 255, 255, .3);
    transform: rotate(24deg) translateX(-240%);
    transition: transform .55s ease;
    pointer-events: none;
}

.filter-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 119, 200, .48);
    box-shadow: 0 18px 38px rgba(0, 119, 200, .16);
}

.filter-btn:hover::after {
    transform: rotate(24deg) translateX(560%);
}

.filter-btn.active {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(0, 119, 200, .26);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn:focus-visible {
    outline: 3px solid rgba(0, 119, 200, .24);
    outline-offset: 4px;
}

.filter-btn:active {
    transform: translateY(-1px) scale(.99);
}

@media(max-width:900px) {
    .product-filter {
        grid-template-columns: repeat(6, minmax(145px, 1fr));
        gap: 12px;
        margin-bottom: 34px;
        padding-bottom: 10px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .product-filter .filter-btn:nth-child(n) {
        grid-column: auto;
    }

    .filter-btn {
        min-height: 64px;
        border-radius: 17px;
    }
}

@media(max-width:600px) {
    .product-filter {
        grid-template-columns: repeat(6, minmax(132px, 1fr));
    }

    .filter-btn {
        min-height: 58px;
        padding: 15px 18px;
        font-size: 14px;
    }
}

/* ===== Product Showcase card redesign ===== */
.product-showcase-section .product-card {
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
    transition:
        border-color .45s ease,
        box-shadow .45s ease,
        transform .35s ease;
}

.product-showcase-section .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 96, 169, .52);
    box-shadow: 0 14px 34px rgba(0, 96, 169, .12);
}

.product-showcase-section .product-card img {
    width: 100%;
    height: 360px;
    flex: 0 0 360px;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-showcase-section .product-card:hover img {
    transform: scale(1.015);
}

.product-showcase-section .product-content {
    height: 90px;
    flex: 0 0 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13px 18px 14px;
}

.product-showcase-section .product-content h3 {
    order: 1;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #123;
}

.product-showcase-section .product-tag {
    order: 2;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .35px;
    color: #0060A9;
}

.product-showcase-section .product-content p {
    display: none;
}


/* ===== Footer company and contact details ===== */
.footer-container {
    align-items: start;
}

.footer-about h2,
.footer-links h3,
.footer-social h3 {
    min-height: 29px;
    margin-top: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-about h2 {
    margin-bottom: 20px;
}

/* The links column uses a 15px flex gap, so 5px here gives the same
   20px heading-to-content spacing as the company description column. */
.footer-links h3 {
    margin-bottom: 5px;
}

.footer-social h3 {
    margin-bottom: 20px;
}

.footer-description {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact-info {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(190px, .9fr);
    gap: 22px 42px;
    margin-top: 32px;
}

.footer-contact-item {
    min-width: 0;
}

.footer-contact-item h4 {
    margin: 0 0 8px;
    color: #0060A9;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
    margin: 0;
    color: #f3f7fa;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.footer-contact-item a {
    display: inline-block;
    transition: color .3s ease;
}

.footer-contact-item a:hover {
    color: #5db8f4;
}

@media(max-width:1100px) {
    .footer-container {
        grid-template-columns: 1.65fr .8fr .8fr;
        gap: 36px;
    }

    .footer-contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media(max-width:900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-description {
        margin-inline: auto;
    }

    .footer-contact-info {
        max-width: 620px;
        margin: 32px auto 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-contact-address {
        grid-column: 1 / -1;
    }

    .footer-links h3 {
        margin-bottom: 5px;
    }
}

@media(max-width:600px) {
    .footer-contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-contact-address {
        grid-column: auto;
    }
}
