

/* 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/Accessories/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;

}

} 

/* ThermaViewer Accessories Start */

.thermaviewer-accessories {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    font-family: inherit;
}

.thermaviewer-accessories *,
.thermaviewer-accessories *::before,
.thermaviewer-accessories *::after {
    box-sizing: border-box;
}

.thermaviewer-accessories .container {
    width: 100%;
    margin: 0 auto;
}

/* Heading */

.accessories-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.accessories-heading .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.accessories-heading .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.accessories-heading .section-heading span {
    color: #ff3b30;
}

/* Grid */

.accessories-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Product Card */

.accessories-product-card {
    position: relative;
    display: flex;
    min-height: 375px;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 41, 100, 0.07);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.accessories-product-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 27px 55px rgba(0, 41, 100, 0.14);
}

/* Product Code */

.product-code {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    padding: 6px 10px;
    color: #002964;
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

/* Image */

.product-image {
    display: flex;
    height: 145px;
    padding: 35px 25px 20px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #edf4ff, #f9fbff);
    border-bottom: 1px solid #e1e8f2;
}

.product-image img {
    display: block;
    width: 100px;
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.accessories-product-card:hover .product-image img {
    transform: translateY(-5px) scale(1.08);
}

.product-image--text span {
    color: #002964;
    font-size: 26px;
    font-weight: 700;
}

/* Details */

.product-details {
    padding: 22px 22px 18px;
    flex: 1;
}

.product-details h3 {
    margin: 0 0 10px;
    color: #002964;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.product-details p {
    margin: 0;
    color: #646f88;
    font-size: 13px;
    line-height: 1.65;
}

/* Footer */

.product-footer {
    display: flex;
    padding: 17px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #f9fbff;
    border-top: 1px solid #e1e8f2;
}

.product-footer strong {
    color: #002964;
    font-size: 19px;
    font-weight: 700;
}

/* Button */

.thermaviewer-accessories .cart-btn {
    display: inline-flex;
    padding: 11px 16px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s ease;
}

.thermaviewer-accessories .cart-btn:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 991px) {
    .thermaviewer-accessories {
        padding: 80px 0;
    }

    .accessories-heading .section-heading {
        font-size: 40px;
    }

    .accessories-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 600px) {
    .thermaviewer-accessories {
        padding: 60px 0;
    }

    .thermaviewer-accessories .container {
        padding: 0 20px;
    }

    .accessories-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .accessories-heading .section-heading {
        font-size: 32px;
    }

    .accessories-product-grid {
        grid-template-columns: 1fr;
    }

    .accessories-product-card {
        min-height: 0;
    }

    .product-image {
        height: 160px;
    }
}

/* ThermaViewer Accessories End */

/* Terms and Conditions Section Start */

.terms-conditions-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
    font-family: inherit;
}

.terms-conditions-section *,
.terms-conditions-section *::before,
.terms-conditions-section *::after {
    box-sizing: border-box;
}

.terms-conditions-section .container {
    width: 100%;
    margin: 0 auto;
}

/* Background Decoration */

.terms-conditions-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 41, 100, 0.04);
}

/* Heading */

.terms-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.terms-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;
}

.terms-heading .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.terms-heading .section-heading span {
    color: #ff3b30;
}

/* Cards Grid */

.terms-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Terms Card */

.terms-card {
    position: relative;
    min-height: 250px;
    padding: 38px 30px 30px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    border: 1px solid #dce5f1;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 41, 100, 0.07);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.terms-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 95px;
    height: 95px;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 0 0 0 100%;
}

.terms-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 25px 55px rgba(0, 41, 100, 0.13);
}

/* Number */

.terms-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.terms-card:hover .terms-number {
    background: #ff3b30;
    transform: rotate(8deg);
}

/* Content */

.terms-content h3 {
    margin: 0 0 13px;
    color: #002964;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.terms-content p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

/* Payment Methods */

.payment-methods {
    display: flex;
    margin-top: 22px;
    align-items: center;
}

.payment-methods img {
    display: block;
    width: 140px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Tablet */

@media (max-width: 991px) {
    .terms-conditions-section {
        padding: 80px 0;
    }

    .terms-heading .section-heading {
        font-size: 40px;
    }

    .terms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .terms-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .terms-conditions-section {
        padding: 60px 0;
    }

    .terms-conditions-section .container {
        padding: 0 20px;
    }

    .terms-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .terms-heading .section-tag {
        font-size: 13px;
    }

    .terms-heading .section-heading {
        font-size: 32px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .terms-card,
    .terms-card:last-child {
        grid-column: auto;
    }

    .terms-card {
        min-height: 0;
        padding: 30px 24px;
        border-radius: 14px;
    }

    .terms-content h3 {
        font-size: 20px;
    }
}

/* Terms and Conditions Section End */

