

/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}

/* ====================================
Refrigerator Freezer Banner
====================================*/

 .freezer-banner-section{

    padding:90px 0;

    min-height:700px;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

background-image: url('/assets/images/banner-image.png');

    background-size:cover;

    background-position:center right;

    background-repeat:no-repeat;

}

/* Decorative Circle */
 
.freezer-banner-section::before{

    content:"";

    width:420px;

    height:420px;

    background:#ff3b3008;

    border-radius:50%;

    position:absolute;

    top:-180px;

    left:-180px;

}

/* Content */

 .freezer-banner-section .banner-content-wrapper{

    position:relative;

    z-index:2;

}

.freezer-banner-section .banner-sub-heading{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    color:#ff3b30;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.freezer-banner-section .banner-heading{

    font-size:56px;

    line-height:1.25;

    font-weight:600;

    color:#002964;

    margin-bottom:25px;

}

.freezer-banner-section .banner-heading span{

    color:#ff3b30;

}

.freezer-banner-section .banner-content{

    max-width:610px;

    font-size:18px;

    color:#646F88;

    line-height:1.8;

    margin-bottom:40px;

} 

/* Buttons */

.freezer-banner-section .banner-buttons{

    display:flex;

    gap:16px;

    margin-bottom:45px;

}

.freezer-banner-section .banner-buttons a{

    padding:15px 28px;

    border-radius:5px;

    text-decoration:none;  

    font-size:15px;

    font-weight:600;

    transition:.3s;
    

}

.freezer-banner-section .explore-btn{

    background:#ff3b30;

    color:#fff;

}

.freezer-banner-section .explore-btn:hover{

    background:#e02a20;

}

.freezer-banner-section .quote-btn{

    border:1px solid #ff3b30;

    color:#ff3b30;

    background:#fff;

}

.freezer-banner-section .quote-btn:hover{

    background:#ff3b30;

    color:#fff;

} 

/* Feature Boxes */

 .banner-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.banner-features .feature-box{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    background:#fff;

    border:1px solid #E5EBF5;

    border-radius:10px;

    transition:.35s;

}

.banner-features .feature-box:hover{

    transform:translateY(-6px);

    border-color:#002964;

    box-shadow:0 18px 40px rgba(6,46,130,.08);

}

.banner-features .feature-box i{

    color:#ff3b30;

    font-size:18px;

}

.banner-features .feature-box span{

    font-size:15px;

    color:#002964;

    font-weight:500;

}

/* Responsive */

@media(max-width:991px){

.freezer-banner-section{

min-height:auto;

padding:80px 0;

background-position:center;

}

.freezer-banner-section .banner-heading{

font-size:42px;

}

.banner-features{

flex-direction:column;

}

.banner-features .feature-box{

width:100%;

}

.banner-buttons{

flex-wrap:wrap;

}

} 

/*====================================
TV2 Quick Check Product Start
====================================*/

.quickcheck-product-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f8fbff;
}

.quickcheck-product-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Product Card */

.quickcheck-product-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 0.55fr;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 22px;
    box-shadow: 0 25px 65px rgba(0, 41, 100, 0.1);
}

/* Product Image */

.quickcheck-product-visual {
    position: relative;
    display: flex;
    min-height: 500px;
    padding: 45px 35px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #eef5ff 0%, #f8fbff 100%);
    box-sizing: border-box;
}

.product-model {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;
    padding: 8px 13px;
    color: #ffffff;
    background: #002964;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.product-image-background {
    position: relative;
    display: flex;
    width: 330px;
    height: 330px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 41, 100, 0.06);
    border-radius: 50%;
}

.product-image-background::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(0, 41, 100, 0.18);
    border-radius: 50%;
}

.product-image-background img {
    position: relative;
    z-index: 2;
    display: block;
    width: 360px;
    max-width: 115%;
    height: auto;
    filter: drop-shadow(0 22px 25px rgba(0, 41, 100, 0.18));
    transition: 0.4s ease;
}

.quickcheck-product-card:hover .product-image-background img {
    transform: translateY(-7px) scale(1.02);
}

/* Product Content */

.quickcheck-product-content {
    padding: 50px 45px;
    border-left: 1px solid #e1e9f5;
    box-sizing: border-box;
}

.quickcheck-product-section .section-tag {
    display: block;
    margin-bottom: 13px;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quickcheck-product-section .section-heading {
    margin: 0 0 25px;
    color: #002964;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
}

.quickcheck-product-section .section-heading span {
    color: #ff3b30;
}

.quickcheck-product-content h3 {
    margin: 0 0 18px;
    color: #002964;
    font-size: 17px;
    font-weight: 600;
}

/* Feature List */

.product-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-feature-list li {
    position: relative;
    padding-left: 23px;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.product-feature-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
}

/* Purchase Area */

.quickcheck-purchase {
    display: flex;
    padding: 40px 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #002964;
    box-sizing: border-box;
    text-align: center;
}

.price-label {
    margin-bottom: 15px;
    color: #b9cce7;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    margin-bottom: 28px;
    align-items: flex-start;
    justify-content: center;
    color: #ffffff;
}

.product-price sup {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
}

.product-price strong {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.product-price span {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 600;
}

/* Add to Cart */

.add-cart-button {
    display: inline-flex;
    width: 100%;
    max-width: 170px;
    min-height: 48px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.add-cart-button:hover {
    color: #002964;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Tablet */

@media (max-width: 991px) {
    .quickcheck-product-section {
        padding: 80px 0;
    }

    .quickcheck-product-section .container {
        padding: 0 25px;
    }

    .quickcheck-product-card {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .quickcheck-purchase {
        grid-column: 1 / -1;
        padding: 28px;
        flex-direction: row;
        gap: 30px;
    }

    .price-label,
    .product-price {
        margin-bottom: 0;
    }

    .quickcheck-product-section .section-heading {
        font-size: 38px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .quickcheck-product-section {
        padding: 60px 0;
    }

    .quickcheck-product-section .container {
        padding: 0 20px;
    }

    .quickcheck-product-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .quickcheck-product-visual {
        min-height: 350px;
        padding: 35px 20px;
    }

    .product-image-background {
        width: 260px;
        height: 260px;
    }

    .quickcheck-product-content {
        padding: 35px 22px;
        border-top: 1px solid #e1e9f5;
        border-left: 0;
    }

    .quickcheck-product-section .section-heading {
        font-size: 32px;
    }

    .quickcheck-product-section .section-heading span {
        display: block;
    }

    .product-feature-list {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .quickcheck-purchase {
        grid-column: auto;
        padding: 30px 22px;
        flex-direction: column;
        gap: 18px;
    }

    .product-price {
        margin: 0;
    }

    .add-cart-button {
        max-width: none;
    }
}

/*====================================
TV2 Quick Check Product End
====================================*/

/*====================================
TV2-201 Wireless Product Start
====================================*/

.tv2-wireless-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.tv2-wireless-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.tv2-wireless-product {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce6f3;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 41, 100, 0.1);
}

/* Product Header */

.tv2-product-header {
    display: flex;
    padding: 25px 32px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #002964;
}

.tv2-product-header div > span {
    display: block;
    margin-bottom: 5px;
    color: #ff827a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.tv2-product-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.tv2-product-header > strong {
    display: inline-flex;
    min-width: 95px;
    min-height: 40px;
    padding: 9px 15px;
    align-items: center;
    justify-content: center;
    color: #002964;
    background: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 700;
}

/* Product Body */

.tv2-product-body {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 0.55fr;
    align-items: stretch;
}

/* Image */

.tv2-product-image {
    position: relative;
    display: flex;
    min-height: 400px;
    padding: 45px 30px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f9ff;
    border-right: 1px solid #dfe7f3;
    box-sizing: border-box;
}

.tv2-product-image::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 41, 100, 0.06);
    border-radius: 45% 55% 55% 45%;
    transform: rotate(-8deg);
}

.tv2-product-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 340px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 22px rgba(0, 41, 100, 0.17));
    transition: 0.4s ease;
}

.tv2-wireless-product:hover .tv2-product-image img {
    transform: translateY(-7px);
}

.image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    padding: 7px 11px;
    color: #002964;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Product Details */

.tv2-product-details {
    padding: 40px;
    box-sizing: border-box;
}

.tv2-product-details h3 {
    margin: 0 0 25px;
    color: #002964;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.tv2-product-details h3 span {
    color: #ff3b30;
}

.tv2-product-details ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tv2-product-details li {
    position: relative;
    padding: 12px 12px 12px 39px;
    color: #646f88;
    background: #f8fbff;
    border: 1px solid #e5ecf6;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    transition: 0.3s ease;
}

.tv2-product-details li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 9px;
    height: 9px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
    transform: translateY(-50%);
}

.tv2-product-details li:hover {
    color: #002964;
    background: #ffffff;
    border-color: rgba(0, 41, 100, 0.25);
    transform: translateY(-3px);
}

/* Order Area */

.tv2-product-order {
    display: flex;
    padding: 35px 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #fff8f7;
    border-left: 1px solid #f0dedb;
    box-sizing: border-box;
    text-align: center;
}

.order-label {
    margin-bottom: 12px;
    color: #646f88;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-price {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    color: #002964;
}

.order-price sup {
    margin-top: 7px;
    font-size: 18px;
    font-weight: 600;
}

.order-price strong {
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
}

.order-price span {
    margin-top: 5px;
    font-size: 17px;
    font-weight: 600;
}

.order-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.order-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-3px);
}

/* Tablet */

@media (max-width: 991px) {
    .tv2-wireless-section {
        padding: 80px 0;
    }

    .tv2-wireless-section .container {
        padding: 0 25px;
    }

    .tv2-product-body {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .tv2-product-order {
        grid-column: 1 / -1;
        padding: 25px 30px;
        flex-direction: row;
        gap: 25px;
        border-top: 1px solid #f0dedb;
        border-left: 0;
    }

    .order-label,
    .order-price {
        margin-bottom: 0;
    }

    .order-button {
        width: 170px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .tv2-wireless-section {
        padding: 60px 0;
    }

    .tv2-wireless-section .container {
        padding: 0 20px;
    }

    .tv2-wireless-product {
        border-radius: 14px;
    }

    .tv2-product-header {
        padding: 22px 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .tv2-product-header h2 {
        font-size: 23px;
    }

    .tv2-product-body {
        grid-template-columns: 1fr;
    }

    .tv2-product-image {
        min-height: 330px;
        border-right: 0;
        border-bottom: 1px solid #dfe7f3;
    }

    .tv2-product-details {
        padding: 30px 20px;
    }

    .tv2-product-details ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tv2-product-order {
        grid-column: auto;
        padding: 28px 20px;
        flex-direction: column;
        gap: 17px;
    }

    .order-button {
        width: 100%;
    }
}

/*====================================
TV2-201 Wireless Product End
====================================*/
/*====================================
TV2 Monitor Options Start
====================================*/

.tv2-options-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f8fbff;
}

.tv2-options-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.tv2-options-heading {
    margin-bottom: 45px;
}

.tv2-options-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tv2-options-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.tv2-options-section .section-heading span {
    color: #ff3b30;
}

/* Options Grid */

.tv2-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* Option Card */

.tv2-option-card {
    display: grid;
    grid-template-rows: 180px 1fr auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
    transition: 0.35s ease;
}

.tv2-option-card:hover {
    border-color: rgba(0, 41, 100, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 41, 100, 0.12);
}

/* Card Top */

.option-card-top {
    position: relative;
    display: flex;
    padding: 25px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #eef5ff 0%, #f8fbff 100%);
    box-sizing: border-box;
}

.option-card-top::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(0, 41, 100, 0.05);
    border-radius: 50%;
}

.option-code {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 7px 11px;
    color: #ffffff;
    background: #002964;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.option-image {
    position: relative;
    z-index: 2;
    display: flex;
    height: 130px;
    align-items: center;
    justify-content: center;
}

.option-image img {
    display: block;
    width: 230px;
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 15px 18px rgba(0, 41, 100, 0.16));
    transition: 0.35s ease;
}

.tv2-option-card:hover .option-image img {
    transform: scale(1.04);
}

/* Cards Without Images */

.option-card-top--text {
    align-items: flex-end;
    justify-content: flex-start;
    background: #002964;
}

.option-card-top--text::before {
    right: -55px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
}

.option-card-top--text .option-code {
    color: #002964;
    background: #ffffff;
}

.option-type {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

/* Card Content */

.option-card-content {
    padding: 28px 28px 22px;
}

.option-card-content h3 {
    margin: 0 0 13px;
    color: #002964;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.option-card-content p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.option-card-content small {
    display: block;
    margin-top: 10px;
    color: #ff3b30;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
}

/* Order Area */

.option-card-order {
    display: flex;
    padding: 20px 28px 28px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid #e8eef6;
}

.option-price {
    display: flex;
    align-items: flex-start;
    color: #002964;
}

.option-price sup {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 600;
}

.option-price strong {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.option-price span {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
}

/* Add to Cart */

.option-cart-button {
    display: inline-flex;
    min-height: 44px;
    padding: 11px 21px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.option-cart-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 991px) {
    .tv2-options-section {
        padding: 80px 0;
    }

    .tv2-options-section .container {
        padding: 0 25px;
    }

    .tv2-options-section .section-heading {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .tv2-options-section {
        padding: 60px 0;
    }

    .tv2-options-section .container {
        padding: 0 20px;
    }

    .tv2-options-heading {
        margin-bottom: 35px;
    }

    .tv2-options-section .section-tag {
        font-size: 13px;
    }

    .tv2-options-section .section-heading {
        font-size: 32px;
    }

    .tv2-options-section .section-heading span {
        display: block;
    }

    .tv2-options-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .tv2-option-card {
        grid-template-rows: 160px 1fr auto;
        border-radius: 14px;
    }

    .option-card-content {
        padding: 23px 20px 18px;
    }

    .option-card-order {
        padding: 18px 20px 22px;
    }

    .option-cart-button {
        padding: 10px 17px;
    }
}

/*====================================
TV2 Monitor Options End
====================================*/
/*====================================
Wired Sensors Section Start
====================================*/

.wired-sensors-section {
    padding: 90px 0;
    background: #f8fbff;
}

.wired-sensors-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.wired-sensors-heading {
    max-width: 850px;
    margin-bottom: 45px;
}

.wired-sensors-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wired-sensors-section .section-heading {
    margin: 0 0 14px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.wired-sensors-section .section-heading span {
    color: #ff3b30;
}

.wired-sensors-heading > p {
    margin: 0;
    color: #646f88;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
}

/* Grid */

.wired-sensors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wired-sensor-card {
    display: grid;
    grid-template-rows: 180px 1fr auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
    transition: 0.35s ease;
}

.wired-sensor-card:hover {
    border-color: rgba(0, 41, 100, 0.3);
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(0, 41, 100, 0.12);
}

/* Card Header */

.sensor-card-header {
    position: relative;
    display: flex;
    padding: 25px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #eef5ff, #f8fbff);
    box-sizing: border-box;
}

.sensor-card-header::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    background: rgba(0, 41, 100, 0.055);
    border-radius: 50%;
}

.sensor-product-code {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 3;
    padding: 7px 11px;
    color: #ffffff;
    background: #002964;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.sensor-product-image {
    position: relative;
    z-index: 2;
    display: flex;
    width: 220px;
    height: 125px;
    align-items: center;
    justify-content: center;
}

.sensor-product-image img {
    display: block;
    max-width: 100%;
    max-height: 125px;
    object-fit: contain;
    filter: drop-shadow(0 14px 17px rgba(0, 41, 100, 0.16));
    transition: 0.35s ease;
}

.wired-sensor-card:hover .sensor-product-image img {
    transform: scale(1.05);
}

/* Card Content */

.sensor-card-body {
    padding: 26px 24px 20px;
}

.sensor-card-body h3 {
    margin: 0 0 17px;
    color: #002964;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.sensor-card-body ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sensor-card-body li {
    position: relative;
    padding-left: 20px;
    color: #646f88;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.sensor-card-body li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #ff3b30;
    border-radius: 50%;
}

.sensor-card-body small {
    display: block;
    margin-top: 12px;
    color: #ff3b30;
    font-size: 11px;
    font-style: italic;
    line-height: 1.5;
}

/* Price and Button */

.sensor-card-order {
    display: flex;
    padding: 19px 24px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #e8eef6;
}

.sensor-price {
    display: flex;
    align-items: flex-start;
    color: #002964;
}

.sensor-price sup {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
}

.sensor-price strong {
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}

.sensor-price span {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
}

.sensor-cart-button {
    display: inline-flex;
    min-height: 43px;
    padding: 10px 18px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.sensor-cart-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-2px);
}

/* Last Two Cards */

.wired-sensor-card:nth-child(4) {
    grid-column: 1 / 2;
}

.wired-sensor-card:nth-child(5) {
    grid-column: 2 / 3;
}

/* Tablet */

@media (max-width: 991px) {
    .wired-sensors-section {
        padding: 80px 0;
    }

    .wired-sensors-section .container {
        padding: 0 25px;
    }

    .wired-sensors-section .section-heading {
        font-size: 40px;
    }

    .wired-sensors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wired-sensor-card:nth-child(4),
    .wired-sensor-card:nth-child(5) {
        grid-column: auto;
    }

    .wired-sensor-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .wired-sensors-section {
        padding: 60px 0;
    }

    .wired-sensors-section .container {
        padding: 0 20px;
    }

    .wired-sensors-heading {
        margin-bottom: 35px;
    }

    .wired-sensors-section .section-heading {
        font-size: 32px;
    }

    .wired-sensors-section .section-heading span {
        display: block;
    }

    .wired-sensors-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .wired-sensor-card,
    .wired-sensor-card:last-child {
        grid-column: auto;
        grid-template-rows: 160px 1fr auto;
    }

    .sensor-card-body {
        padding: 23px 20px 18px;
    }

    .sensor-card-order {
        padding: 18px 20px 22px;
    }
}

/*====================================
Wired Sensors Section End
====================================*/
/*====================================
Wireless Sensors Section Start
====================================*/

.wireless-sensors-catalog {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

.wireless-sensors-catalog::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.wireless-sensors-catalog .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Heading */

.wireless-catalog-heading {
    max-width: 850px;
    margin-bottom: 45px;
}

.wireless-sensors-catalog .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wireless-sensors-catalog .section-heading {
    margin: 0 0 14px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.wireless-sensors-catalog .section-heading span {
    color: #ff3b30;
}

.wireless-catalog-heading > p {
    margin: 0;
    color: #646f88;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
}

/* Product List */

.wireless-products-list {
    display: grid;
    gap: 18px;
}

.wireless-product-row {
    display: grid;
    grid-template-columns: 175px 210px 1fr 190px;
    min-height: 210px;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
    transition: 0.35s ease;
}

.wireless-product-row:hover {
    border-color: rgba(0, 41, 100, 0.35);
    transform: translateX(8px);
    box-shadow: 0 20px 45px rgba(0, 41, 100, 0.11);
}

/* Product Code */

.wireless-product-code {
    display: flex;
    padding: 28px 22px;
    flex-direction: column;
    justify-content: center;
    background: #002964;
    box-sizing: border-box;
}

.wireless-product-code span {
    display: block;
    margin-bottom: 8px;
    color: #b9cce7;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wireless-product-code strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}

/* Product Image */

.wireless-product-image {
    position: relative;
    display: flex;
    padding: 25px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f3f7ff;
    border-right: 1px solid #e1e9f5;
    box-sizing: border-box;
}

.wireless-product-image::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    background: rgba(0, 41, 100, 0.06);
    border-radius: 50%;
}

.wireless-product-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 170px;
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 13px 16px rgba(0, 41, 100, 0.16));
    transition: 0.35s ease;
}

.wireless-product-row:hover .wireless-product-image img {
    transform: scale(1.06);
}

/* Wireless Signal */

.wireless-signal {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    display: flex;
    height: 20px;
    align-items: flex-end;
    gap: 3px;
}

.wireless-signal span {
    display: block;
    width: 4px;
    background: #24b26b;
    border-radius: 3px;
}

.wireless-signal span:first-child {
    height: 7px;
}

.wireless-signal span:nth-child(2) {
    height: 13px;
}

.wireless-signal span:last-child {
    height: 20px;
}

/* Product Information */

.wireless-product-info {
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.wireless-product-info h3 {
    margin: 0 0 12px;
    color: #002964;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.wireless-product-info p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.wireless-product-info small {
    display: block;
    margin-top: 10px;
    color: #ff3b30;
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
}

/* Ranges */

.wireless-ranges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.wireless-ranges span {
    padding: 7px 11px;
    color: #002964;
    background: #f3f7ff;
    border: 1px solid #dfe7f3;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Price and Button */

.wireless-product-order {
    display: flex;
    padding: 25px 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #fff8f7;
    border-left: 1px solid #f0dedb;
    box-sizing: border-box;
}

.wireless-product-price {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
    color: #002964;
}

.wireless-product-price sup {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 600;
}

.wireless-product-price strong {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
}

.wireless-product-price span {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
}

.wireless-add-button {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    padding: 10px 17px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.wireless-add-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 991px) {
    .wireless-sensors-catalog {
        padding: 80px 0;
    }

    .wireless-sensors-catalog .container {
        padding: 0 25px;
    }

    .wireless-sensors-catalog .section-heading {
        font-size: 40px;
    }

    .wireless-product-row {
        grid-template-columns: 145px 190px 1fr;
    }

    .wireless-product-order {
        grid-column: 1 / -1;
        padding: 22px 25px;
        flex-direction: row;
        gap: 25px;
        border-top: 1px solid #f0dedb;
        border-left: 0;
    }

    .wireless-product-price {
        margin-bottom: 0;
    }

    .wireless-add-button {
        width: 170px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .wireless-sensors-catalog {
        padding: 60px 0;
    }

    .wireless-sensors-catalog .container {
        padding: 0 20px;
    }

    .wireless-catalog-heading {
        margin-bottom: 35px;
    }

    .wireless-sensors-catalog .section-heading {
        font-size: 32px;
    }

    .wireless-sensors-catalog .section-heading span {
        display: block;
    }

    .wireless-product-row {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .wireless-product-row:hover {
        transform: translateY(-5px);
    }

    .wireless-product-code {
        padding: 20px;
    }

    .wireless-product-image {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid #e1e9f5;
    }

    .wireless-product-info {
        padding: 25px 20px;
    }

    .wireless-product-order {
        grid-column: auto;
        padding: 22px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .wireless-add-button {
        width: 100%;
    }
}

/*====================================
Wireless Sensors Section End
====================================*/
/*====================================
Accessories Section Start
====================================*/

.accessories-section {
    padding: 90px 0;
    background: #f8fbff;
}

.accessories-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.accessories-section .section-heading {
    margin: 0 0 40px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

/* Accessories Card */

.accessories-card {
    display: grid;
    grid-template-columns: 150px 1fr 90px;
    min-height: 145px;
    align-items: stretch;
    overflow: hidden;
    color: inherit;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 41, 100, 0.08);
    text-decoration: none;
    transition: 0.35s ease;
}

.accessories-card:hover {
    border-color: #002964;
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 41, 100, 0.13);
}

/* Code */

.accessories-code {
    display: flex;
    padding: 25px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    font-size: 26px;
    font-weight: 700;
}

/* Description */

.accessories-card p {
    display: flex;
    margin: 0;
    padding: 30px 38px;
    align-items: center;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Arrow */

.accessories-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    font-size: 24px;
    transition: 0.3s ease;
}

.accessories-card:hover .accessories-arrow {
    background: #002964;
}

/* Tablet */

@media (max-width: 991px) {
    .accessories-section {
        padding: 80px 0;
    }

    .accessories-section .container {
        padding: 0 25px;
    }

    .accessories-section .section-heading {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .accessories-section {
        padding: 60px 0;
    }

    .accessories-section .container {
        padding: 0 20px;
    }

    .accessories-section .section-heading {
        margin-bottom: 30px;
        font-size: 32px;
    }

    .accessories-card {
        grid-template-columns: 1fr;
    }

    .accessories-code {
        padding: 20px;
        justify-content: flex-start;
        font-size: 21px;
    }

    .accessories-card p {
        padding: 25px 20px;
        font-size: 15px;
    }

    .accessories-arrow {
        min-height: 55px;
        justify-content: flex-start;
        padding: 0 20px;
    }
}

/*====================================
Accessories Section End
====================================*/
/*====================================
Preconfigured Systems Section Start
====================================*/

.preconfigured-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

.preconfigured-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 390px;
    height: 390px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.preconfigured-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.preconfigured-section .section-heading {
    margin: 0 0 40px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.preconfigured-section .section-heading span {
    color: #ff3b30;
}

/* Card */

.preconfigured-card {
    display: grid;
    grid-template-columns: 170px 1fr 100px;
    min-height: 150px;
    align-items: stretch;
    overflow: hidden;
    color: inherit;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0, 41, 100, 0.08);
    text-decoration: none;
    transition: 0.35s ease;
}

.preconfigured-card:hover {
    border-color: rgba(0, 41, 100, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 41, 100, 0.13);
}

/* Code */

.preconfigured-code {
    position: relative;
    display: flex;
    padding: 28px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #002964;
    box-sizing: border-box;
}

.preconfigured-code::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -65px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.preconfigured-code small {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 6px;
    color: #b9cce7;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.preconfigured-code strong {
    position: relative;
    z-index: 2;
    display: block;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

/* Description */

.preconfigured-card > p {
    display: flex;
    margin: 0;
    padding: 32px 40px;
    align-items: center;
    color: #646f88;
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Arrow */

.preconfigured-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    font-size: 24px;
    transition: 0.3s ease;
}

.preconfigured-card:hover .preconfigured-arrow {
    background: #002964;
}

.preconfigured-card:hover .preconfigured-arrow {
    padding-left: 8px;
}

/* Tablet */

@media (max-width: 991px) {
    .preconfigured-section {
        padding: 80px 0;
    }

    .preconfigured-section .container {
        padding: 0 25px;
    }

    .preconfigured-section .section-heading {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .preconfigured-section {
        padding: 60px 0;
    }

    .preconfigured-section .container {
        padding: 0 20px;
    }

    .preconfigured-section .section-heading {
        margin-bottom: 30px;
        font-size: 32px;
    }

    .preconfigured-section .section-heading span {
        display: block;
    }

    .preconfigured-card {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .preconfigured-code {
        padding: 22px 20px;
    }

    .preconfigured-card > p {
        padding: 26px 20px;
        font-size: 15px;
    }

    .preconfigured-arrow {
        min-height: 55px;
        padding: 0 20px;
        justify-content: flex-start;
    }
}

/*====================================
Preconfigured Systems Section End
====================================*/
/*====================================
Order Information Section Start
====================================*/

.order-information-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.order-information-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Grid */

.order-information-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Information Card */

.information-card {
    position: relative;
    min-height: 230px;
    padding: 35px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
    box-sizing: border-box;
    transition: 0.35s ease;
}

.information-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #002964;
    transition: 0.35s ease;
}

.information-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -75px;
    width: 170px;
    height: 170px;
    background: rgba(0, 41, 100, 0.035);
    border-radius: 50%;
    transition: 0.35s ease;
}

.information-card:hover {
    border-color: rgba(0, 41, 100, 0.3);
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(0, 41, 100, 0.11);
}

.information-card:hover::before {
    background: #ff3b30;
}

.information-card:hover::after {
    background: rgba(255, 59, 48, 0.05);
    transform: scale(1.2);
}

/* Card Title */

.information-card-title {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 22px;
    align-items: center;
    gap: 14px;
}

.information-card-title > span {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.information-card:hover .information-card-title > span {
    background: #ff3b30;
}

.information-card-title h3 {
    margin: 0;
    color: #002964;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

/* Card Content */

.information-card > p,
.terms-content p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #646f88;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

/* Terms */

.terms-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 25px;
}

.payment-methods-image {
    display: block;
    width: 130px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Warranty Card */

.information-card--warranty::before {
    background: #ff3b30;
}

/* Tablet */

@media (max-width: 991px) {
    .order-information-section {
        padding: 80px 0;
    }

    .order-information-section .container {
        padding: 0 25px;
    }

    .information-card {
        padding: 30px;
    }

    .terms-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .order-information-section {
        padding: 60px 0;
    }

    .order-information-section .container {
        padding: 0 20px;
    }

    .order-information-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .information-card {
        min-height: auto;
        padding: 27px 22px;
        border-radius: 13px;
    }

    .information-card-title {
        margin-bottom: 18px;
    }

    .information-card-title > span {
        width: 38px;
        height: 38px;
    }

    .information-card-title h3 {
        font-size: 19px;
    }

    .information-card > p,
    .terms-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .payment-methods-image {
        width: 120px;
    }
}

/*====================================
Order Information Section End
====================================*/
