 .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 Products Section Start */

.tv2-products-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    font-family: inherit;
}

.tv2-products-section *,
.tv2-products-section *::before,
.tv2-products-section *::after {
    box-sizing: border-box;
}

.tv2-products-section .container {
    width: 100%;
    margin: 0 auto;
}

/* Background Decoration */

.tv2-products-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 41, 100, 0.05);
}

/* Heading */

.tv2-products-heading {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.tv2-products-heading .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tv2-products-heading .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.tv2-products-heading .section-heading span {
    color: #ff3b30;
}

/* Products Grid */

.tv2-products-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

/* Product Card */

.tv2-product-card {
    position: relative;
    display: grid;
    grid-template-columns: 155px 1fr;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce6f3;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 41, 100, 0.08);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    animation: productCardReveal 0.7s ease both;
}

.tv2-product-card:nth-child(2) {
    animation-delay: 0.12s;
}

.tv2-product-card:nth-child(3) {
    animation-delay: 0.24s;
}

.tv2-product-card:nth-child(4) {
    animation-delay: 0.36s;
}

.tv2-product-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 59, 48, 0.45);
    box-shadow: 0 27px 60px rgba(0, 41, 100, 0.14);
}

/* Product Code */

.product-code {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 6px 10px;
    color: #002964;
    background: #edf4ff;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Product Image */

.product-image {
    display: flex;
    min-height: 225px;
    padding: 58px 20px 25px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fbff, #edf4ff);
    border-right: 1px solid #e1e8f2;
}

.product-image img {
    display: block;
    width: 125px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.tv2-product-card:hover .product-image img {
    transform: scale(1.08) translateY(-4px);
}

/* Product Content */

.product-content {
    padding: 28px 25px 90px;
}

.product-content h3 {
    margin: 0 0 15px;
    color: #002964;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.product-content ul {
    display: grid;
    gap: 5px;
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
}

.product-content li {
    position: relative;
    padding-left: 17px;
    color: #646f88;
    font-size: 13px;
    line-height: 1.5;
}

.product-content li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff3b30;
}

.sensor-link {
    color: #002964;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.sensor-link:hover {
    color: #ff3b30;
}

/* Price and Button */

.product-buy {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-price {
    color: #002964;
    font-size: 22px;
    font-weight: 700;
}

.add-cart-btn {
    display: inline-flex;
    padding: 12px 19px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.add-cart-btn:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 41, 100, 0.2);
}

/* Entrance Animation */

@keyframes productCardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width: 991px) {
    .tv2-products-section {
        padding: 80px 0;
    }

    .tv2-products-heading .section-heading {
        font-size: 40px;
    }

    .tv2-products-grid {
        grid-template-columns: 1fr;
    }

    .tv2-product-card {
        grid-template-columns: 190px 1fr;
    }

    .product-buy {
        left: 215px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .tv2-products-section {
        padding: 60px 0;
    }

    .tv2-products-section .container {
        padding: 0 20px;
    }

    .tv2-products-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .tv2-products-heading .section-tag {
        font-size: 13px;
    }

    .tv2-products-heading .section-heading {
        font-size: 32px;
    }

    .tv2-product-card {
        display: block;
        border-radius: 14px;
    }

    .product-code {
        top: 15px;
        left: 15px;
    }

    .product-image {
        min-height: 210px;
        padding-top: 55px;
        border-right: 0;
        border-bottom: 1px solid #e1e8f2;
    }

    .product-image img {
        width: 145px;
    }

    .product-content {
        padding: 24px 20px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-buy {
        position: static;
        padding: 0 20px 22px;
    }

    .product-price {
        font-size: 20px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .tv2-product-card {
        animation: none;
    }

    .tv2-product-card,
    .product-image img,
    .add-cart-btn {
        transition: none;
    }
}

/* TV2 Products Section End */
/* TV2 Options Section Start */

.tv2-options-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
    font-family: inherit;
}

.tv2-options-section *,
.tv2-options-section *::before,
.tv2-options-section *::after {
    box-sizing: border-box;
}

.tv2-options-section .container {
    width: 100%;
    margin: 0 auto;
}

/* Background Decoration */

.tv2-options-section::before {
    content: "";
    position: absolute;
    top: 100px;
    right: -170px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 41, 100, 0.04);
}

/* Heading */

.tv2-options-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.tv2-options-heading .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tv2-options-heading .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.tv2-options-heading .section-heading span {
    color: #ff3b30;
}

/* Options Grid */

.tv2-options-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

/* Option Card */

.tv2-option-card {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 260px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 41, 100, 0.08);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    animation: optionCardReveal 0.7s ease both;
}

.tv2-option-card:nth-child(2) {
    animation-delay: 0.12s;
}

.tv2-option-card:nth-child(3) {
    animation-delay: 0.24s;
}

.tv2-option-card:nth-child(4) {
    animation-delay: 0.36s;
}

.tv2-option-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 27px 60px rgba(0, 41, 100, 0.14);
}

/* Product Code */

.option-code {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 10px;
    color: #002964;
    background: #edf4ff;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Option Image */

.option-image {
    display: flex;
    padding: 55px 15px 75px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fbff, #edf4ff);
    border-right: 1px solid #e1e8f2;
}

.option-image img {
    display: block;
    width: 90px;
    max-width: 100%;
    max-height: 115px;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.tv2-option-card:hover .option-image img {
    transform: scale(1.09) translateY(-4px);
}

/* Option Content */

.option-content {
    padding: 30px 25px 85px;
}

.option-content h3 {
    margin: 0 0 13px;
    color: #002964;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.option-content p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.option-content em {
    color: #7d8799;
}

/* Purchase Area */

.option-purchase {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 145px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.option-price {
    color: #002964;
    font-size: 21px;
    font-weight: 700;
}

/* Add to Cart Button */

.tv2-options-section .add-cart-btn {
    display: inline-flex;
    padding: 12px 19px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tv2-options-section .add-cart-btn:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 41, 100, 0.2);
}

/* Animation */

@keyframes optionCardReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width: 991px) {
    .tv2-options-section {
        padding: 80px 0;
    }

    .tv2-options-heading .section-heading {
        font-size: 40px;
    }

    .tv2-options-grid {
        grid-template-columns: 1fr;
    }

    .tv2-option-card {
        grid-template-columns: 160px 1fr;
    }

    .option-purchase {
        left: 185px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .tv2-options-section {
        padding: 60px 0;
    }

    .tv2-options-section .container {
        padding: 0 20px;
    }

    .tv2-options-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .tv2-options-heading .section-tag {
        font-size: 13px;
    }

    .tv2-options-heading .section-heading {
        font-size: 32px;
    }

    .tv2-options-heading .section-heading span {
        display: block;
    }

    .tv2-option-card {
        display: block;
        min-height: 0;
        border-radius: 14px;
    }

    .option-image {
        min-height: 190px;
        padding: 55px 20px 25px;
        border-right: 0;
        border-bottom: 1px solid #e1e8f2;
    }

    .option-image img {
        width: 110px;
        max-height: 120px;
    }

    .option-content {
        padding: 24px 20px;
    }

    .option-content h3 {
        font-size: 19px;
    }

    .option-purchase {
        position: static;
        padding: 0 20px 22px;
    }

    .option-price {
        font-size: 20px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .tv2-option-card {
        animation: none;
    }

    .tv2-option-card,
    .option-image img,
    .add-cart-btn {
        transition: none;
    }
}

/* TV2 Options Section End */


/* Wired Sensors Shop Start */

.wired-sensors-shop {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    font-family: inherit;
}

.wired-sensors-shop *,
.wired-sensors-shop *::before,
.wired-sensors-shop *::after {
    box-sizing: border-box;
}

.wired-sensors-shop .container {
    width: 100%;
    margin: 0 auto;
}

/* Heading */

.wired-sensors-heading {
    max-width: 800px;
    margin: 0 0 55px;
    text-align: left;
}

.wired-sensors-heading .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wired-sensors-heading .section-heading {
    margin: 0 0 15px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.wired-sensors-heading .section-heading span {
    color: #ff3b30;
}

.wired-sensors-heading p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    line-height: 1.7;
}

/* Product List */

.wired-sensors-list {
    display: grid;
    gap: 18px;
}

/* Product Item */

.wired-sensor-item {
    position: relative;
    display: grid;
    grid-template-columns: 115px 130px minmax(0, 1fr) 200px;
    min-height: 165px;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.wired-sensor-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 20px 45px rgba(0, 41, 100, 0.12);
}

/* Code */

.sensor-code {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* Image */

.sensor-product-image {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    background: #f5f9ff;
    border-right: 1px solid #e2e9f3;
}

.sensor-product-image img {
    display: block;
    width: 85px;
    max-width: 100%;
    max-height: 95px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.wired-sensor-item:hover .sensor-product-image img {
    transform: scale(1.1) rotate(-2deg);
}

/* Content */

.sensor-product-content {
    display: flex;
    padding: 25px 30px;
    flex-direction: column;
    justify-content: center;
}

.sensor-product-content h3 {
    margin: 0 0 9px;
    color: #002964;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.sensor-product-content p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.sensor-product-content small {
    display: block;
    margin-top: 8px;
    color: #7d8799;
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
}

/* Price and Button */

.sensor-product-purchase {
    display: flex;
    padding: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #fbfcff;
    border-left: 1px solid #e2e9f3;
}

.sensor-product-purchase strong {
    color: #002964;
    font-size: 21px;
    font-weight: 700;
}

/* Button */

.wired-sensors-shop .add-cart-btn {
    display: inline-flex;
    min-width: 125px;
    padding: 12px 18px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.wired-sensors-shop .add-cart-btn:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 41, 100, 0.2);
}

/* Tablet */

@media (max-width: 991px) {
    .wired-sensors-shop {
        padding: 80px 0;
    }

    .wired-sensors-heading .section-heading {
        font-size: 40px;
    }

    .wired-sensor-item {
        grid-template-columns: 90px 115px 1fr;
    }

    .sensor-product-purchase {
        grid-column: 1 / -1;
        padding: 18px 24px;
        flex-direction: row;
        justify-content: flex-end;
        border-top: 1px solid #e2e9f3;
        border-left: 0;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .wired-sensors-shop {
        padding: 60px 0;
    }

    .wired-sensors-shop .container {
        padding: 0 20px;
    }

    .wired-sensors-heading {
        margin-bottom: 40px;
    }

    .wired-sensors-heading .section-tag {
        font-size: 13px;
    }

    .wired-sensors-heading .section-heading {
        font-size: 32px;
    }

    .wired-sensors-heading p {
        font-size: 15px;
    }

    .wired-sensor-item {
        display: grid;
        grid-template-columns: 85px 1fr;
        border-radius: 13px;
    }

    .sensor-code {
        min-height: 75px;
        padding: 15px;
    }

    .sensor-product-image {
        min-height: 120px;
        border-right: 0;
    }

    .sensor-product-image img {
        width: 80px;
    }

    .sensor-product-content {
        grid-column: 1 / -1;
        padding: 22px 20px;
        border-top: 1px solid #e2e9f3;
    }

    .sensor-product-content h3 {
        font-size: 17px;
    }

    .sensor-product-purchase {
        grid-column: 1 / -1;
        padding: 18px 20px;
        justify-content: space-between;
    }
}

/* Wired Sensors Shop End */

/* Wireless Sensors Shop Start */

.wireless-sensors-shop {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
    font-family: inherit;
}

.wireless-sensors-shop *,
.wireless-sensors-shop *::before,
.wireless-sensors-shop *::after {
    box-sizing: border-box;
}

.wireless-sensors-shop .container {
    width: 100%;
    margin: 0 auto;
}

/* Background Shape */

.wireless-sensors-shop::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 41, 100, 0.04);
}

/* Heading */

.wireless-sensors-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.wireless-sensors-heading .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wireless-sensors-heading .section-heading {
    margin: 0 0 15px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.wireless-sensors-heading .section-heading span {
    color: #ff3b30;
}

.wireless-sensors-heading p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    line-height: 1.7;
}

/* Product List */

.wireless-sensors-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 20px;
}

/* Product Card */

.wireless-sensor-card {
    display: grid;
    grid-template-columns: 150px 150px minmax(0, 1fr) 205px;
    min-height: 180px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 17px;
    box-shadow: 0 14px 40px rgba(0, 41, 100, 0.07);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    animation: wirelessCardReveal 0.7s ease both;
}

.wireless-sensor-card:nth-child(2) {
    animation-delay: 0.15s;
}

.wireless-sensor-card:nth-child(3) {
    animation-delay: 0.3s;
}

.wireless-sensor-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 24px 55px rgba(0, 41, 100, 0.13);
}

/* Product Code */

.wireless-product-code {
    display: flex;
    padding: 22px 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    text-align: center;
}

.wireless-product-code strong {
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.wireless-product-code small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
}

/* Product Image */

.wireless-product-image {
    display: flex;
    padding: 22px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fbff, #edf4ff);
    border-right: 1px solid #e1e8f2;
}

.wireless-product-image img {
    display: block;
    width: 100px;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.wireless-sensor-card:hover .wireless-product-image img {
    transform: translateY(-5px) scale(1.09);
}

/* Product Content */

.wireless-product-content {
    display: flex;
    padding: 27px 30px;
    flex-direction: column;
    justify-content: center;
}

.wireless-product-content h3 {
    margin: 0 0 10px;
    color: #002964;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.wireless-product-content p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.product-note {
    display: block;
    margin-top: 8px;
    color: #7d8799;
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
}

/* Purchase Area */

.wireless-product-purchase {
    display: flex;
    padding: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #f9fbff;
    border-left: 1px solid #e1e8f2;
}

.wireless-price {
    color: #002964;
    font-size: 21px;
    font-weight: 700;
}

/* Cart Button */

.wireless-sensors-shop .add-cart-btn {
    display: inline-flex;
    min-width: 125px;
    padding: 12px 18px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.wireless-sensors-shop .add-cart-btn:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 41, 100, 0.2);
}

/* Entrance Animation */

@keyframes wirelessCardReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width: 991px) {
    .wireless-sensors-shop {
        padding: 80px 0;
    }

    .wireless-sensors-heading .section-heading {
        font-size: 40px;
    }

    .wireless-sensor-card {
        grid-template-columns: 135px 135px 1fr;
    }

    .wireless-product-purchase {
        grid-column: 1 / -1;
        padding: 18px 25px;
        flex-direction: row;
        justify-content: flex-end;
        border-top: 1px solid #e1e8f2;
        border-left: 0;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .wireless-sensors-shop {
        padding: 60px 0;
    }

    .wireless-sensors-shop .container {
        padding: 0 20px;
    }

    .wireless-sensors-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .wireless-sensors-heading .section-tag {
        font-size: 13px;
    }

    .wireless-sensors-heading .section-heading {
        font-size: 32px;
    }

    .wireless-sensors-heading .section-heading span {
        display: block;
    }

    .wireless-sensors-heading p {
        font-size: 15px;
    }

    .wireless-sensor-card {
        grid-template-columns: 105px 1fr;
        border-radius: 13px;
    }

    .wireless-product-code {
        padding: 16px 10px;
    }

    .wireless-product-image {
        min-height: 130px;
        border-right: 0;
    }

    .wireless-product-content {
        grid-column: 1 / -1;
        padding: 22px 20px;
        border-top: 1px solid #e1e8f2;
    }

    .wireless-product-content h3 {
        font-size: 17px;
    }

    .wireless-product-purchase {
        grid-column: 1 / -1;
        padding: 18px 20px;
        justify-content: space-between;
    }

    .wireless-price {
        font-size: 20px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .wireless-sensor-card {
        animation: none;
    }

    .wireless-sensor-card,
    .wireless-product-image img,
    .add-cart-btn {
        transition: none;
    }
}

/* Wireless Sensors Shop End */

/* Optional Accessories Section Start */

.optional-accessories-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    font-family: inherit;
}

.optional-accessories-section *,
.optional-accessories-section *::before,
.optional-accessories-section *::after {
    box-sizing: border-box;
}

.optional-accessories-section .container {
    width: 100%;
    margin: 0 auto;
}

/* Background Shape */

.optional-accessories-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 41, 100, 0.05);
}

/* Heading */

.optional-accessories-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.optional-accessories-heading .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.optional-accessories-heading .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.optional-accessories-heading .section-heading span {
    color: #ff3b30;
}

/* Accessories Wrapper */

.accessories-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

/* Accessory Card */

.accessory-card {
    position: relative;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 285px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 41, 100, 0.08);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.accessory-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 28px 60px rgba(0, 41, 100, 0.14);
}

/* Product Code */

.accessory-code {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 3;
    padding: 6px 11px;
    color: #002964;
    background: #ffffff;
    border: 1px solid #dbe5f3;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

/* Image */

.accessory-image {
    display: flex;
    padding: 55px 18px 80px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #edf4ff, #f8fbff);
    border-right: 1px solid #e1e8f2;
}

.accessory-image img {
    display: block;
    width: 105px;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.accessory-card:hover .accessory-image img {
    transform: translateY(-5px) scale(1.08);
}

/* Content */

.accessory-content {
    padding: 35px 28px 90px;
}

.accessory-content h3 {
    margin: 0 0 13px;
    color: #002964;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.accessory-content p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* Purchase and Action Areas */

.accessory-purchase,
.accessory-action {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 156px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.accessory-price {
    color: #002964;
    font-size: 21px;
    font-weight: 700;
}

/* Buttons */

.optional-accessories-section .add-cart-btn,
.optional-accessories-section .view-accessories-btn {
    display: inline-flex;
    padding: 12px 19px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.optional-accessories-section .add-cart-btn {
    color: #ffffff;
    background: #ff3b30;
}

.optional-accessories-section .view-accessories-btn {
    width: 100%;
    color: #ff3b30;
    background: transparent;
    border: 1px solid #ff3b30;
}

.optional-accessories-section .add-cart-btn:hover,
.optional-accessories-section .view-accessories-btn:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 41, 100, 0.2);
}

/* Tablet */

@media (max-width: 991px) {
    .optional-accessories-section {
        padding: 80px 0;
    }

    .optional-accessories-heading .section-heading {
        font-size: 40px;
    }

    .accessories-wrapper {
        grid-template-columns: 1fr;
    }

    .accessory-card {
        grid-template-columns: 180px 1fr;
    }

    .accessory-purchase,
    .accessory-action {
        left: 206px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .optional-accessories-section {
        padding: 60px 0;
    }

    .optional-accessories-section .container {
        padding: 0 20px;
    }

    .optional-accessories-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .optional-accessories-heading .section-tag {
        font-size: 13px;
    }

    .optional-accessories-heading .section-heading {
        font-size: 32px;
    }

    .accessory-card {
        display: block;
        min-height: 0;
        border-radius: 14px;
    }

    .accessory-image {
        min-height: 190px;
        padding: 55px 20px 25px;
        border-right: 0;
        border-bottom: 1px solid #e1e8f2;
    }

    .accessory-image img {
        width: 120px;
    }

    .accessory-content {
        padding: 24px 20px;
    }

    .accessory-content h3 {
        font-size: 20px;
    }

    .accessory-purchase,
    .accessory-action {
        position: static;
        padding: 0 20px 22px;
    }

    .accessory-price {
        font-size: 20px;
    }
}

/* Optional Accessories Section End */