/*
Theme Name: Qianyong Appliance
Theme URI: https://yourdomain.com
Author: Qianyong
Description: B2B Home Appliance WordPress Theme
Version: 1.0
*/

/* =========================
   CLEANED CSS
   Duplicate selectors merged.
   Existing layout and functionality preserved.
========================= */

/* =========================
   DESKTOP / BASE STYLES
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.header-container {
    width: 1200px;
    max-width: 90%;
    margin: auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo a {
    font-size: 26px;
    font-weight: 700;
    color: #0B2545;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #333;
    font-size: 15px;
}

.main-nav a:hover {
    color: #F97316;
}

.header-btn a {
    background: #0B2545;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 15px;
}

.header-btn a:hover {
    background: #F97316;
}

.mobile-menu-btn {
    display: none;
    width: 35px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    background: #333;
    margin: 6px 0;
}

.hero {
    background: url("assets/images/banner.jpg") center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    background: rgba(255,255,255,0.92);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin-left: 8%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.25;
    color: #0B2545;
    margin: 0 0 25px;
}

.hero p {
    font-size: 18px;
    color: #475467;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    background: #F97316;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
}

.btn:hover {
    background: #EA580C;
}

.section {
    padding: 70px 0;
}

h2 {
    text-align: center;
    font-size: 34px;
    color: #0B2545;
    margin-bottom: 40px;
}

.products {
    display: flex;
    gap: 30px;
}

.product-box {
    flex: 1;
    border: none;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.product-box img{
    width:100%;
    height:240px;
    object-fit:contain;
    object-position:center;
    display:block;
}

.product-box h3 {
    font-size: 20px;
    color: #0B2545;
}

.advantages {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4,1fr);
}

.advantages div {
    flex: 1;
    padding: 30px;
    background: white;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.factory img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: auto;
}

.contact {
    background: #0B2545;
    padding: 90px 0;
    text-align: center;
    color: white;
}

.footer {
    background: #222;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.section:nth-child(even) {
    background: #F8FAFC;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.advantages h3 {
    color: #0B2545;
}

.contact h2 {
    color: white;
}

.hero-content {
    background: rgba(255,255,255,.9);
    padding: 45px;
    border-radius: 12px;
    max-width: 650px;
}

.trust-bar {
    background: #0B2545;
    color: white;
    padding: 35px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.trust-bar strong {
    display: block;
    font-size: 30px;
    color: #F97316;
}

.trust-bar span {
    font-size: 15px;
}

.gray {
    background: #F8FAFC;
}

.product-box a {
    color: #F97316;
    font-weight: bold;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.certificates div {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    font-size: 25px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.process {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.process div {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.product-detail-section {
    padding: 70px 0;
    background: #fff;
}

.product-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
}

.product-info h1 {
    font-size: 36px;
    color: #12304a;
    margin-bottom: 20px;
}

.product-short {
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}

.product-spec {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}

.product-spec td {
    border: 1px solid #ddd;
    padding: 15px;
}

.product-spec td:first-child {
    background: #f5f7fa;
    font-weight: bold;
    width: 35%;
    color: #0B2545;
}

.product-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quote-btn {
    background: #0066cc;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    display: inline-block;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 15px;
}

.product-description {
    margin-top: 70px;
    line-height: 1.8;
}

.product-description h2,
.oem-box h2,
.related-products h2 {
    color: #0B2545;
    font-size: 30px;
}

.oem-box {
    margin-top: 60px;
    padding: 40px;
    background: #F8FAFC;
    border-radius: 12px;
}

.oem-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 30px;
}

.oem-list div {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    font-weight: bold;
}

.related-products {
    margin-top: 70px;
}

.product-gallery {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.main-product-image {
    width: 100%;
    height: 500px;
    max-height: 650px;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.gallery-thumbs img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #ddd;
    padding: 5px;
    cursor: pointer;
}

.gallery-thumbs img:hover {
    border-color: #f97316;
}

.category-section {
    padding: 80px 0;
    background: #f8fafc;
}

.category-section h2 {
    text-align: center;
    font-size: 36px;
    color: #0B2545;
}

.section-desc {
    text-align: center;
    color: #667085;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.category-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.category-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.category-box h3 {
    font-size: 26px;
    color: #0B2545;
}

.category-box a {
    display: inline-block;
    margin-bottom: 30px;
    color: #F97316;
    font-weight: bold;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-btn,
.whatsapp-btn {
    display: inline-block;
    padding: 15px 35px;
    margin-right: 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    right: 40px;
    top: 20px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

.category-banner {
    background: #f5f7fa;
    padding: 80px 0;
    text-align: center;
}

.category-banner h1 {
    font-size: 42px;
    color: #12304a;
}

.category-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.product-detail {
    padding: 80px 0;
}

.product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid #eee;
    display: block;
    max-width: 600px;
    margin: 0 auto;
    cursor: zoom-in;
}

.product-intro {
    font-size: 18px;
    line-height: 1.7;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.spec-table td {
    border: 1px solid #ddd;
    padding: 15px;
}

.spec-table td:first-child {
    background: #f5f7fa;
    font-weight: bold;
    width: 35%;
}

.product-actions {
    margin-top: 30px;
}

.product-content {
    padding: 60px 0;
    line-height: 1.8;
}

.product-advantages {
    background: #f5f7fa;
    padding: 50px;
}

.adv-grid {
    display: flex;
    gap: 30px;
}

.adv-grid div {
    flex: 1;
    background: white;
    padding: 25px;
}

.page-content {
    padding: 80px 0;
    background: #ffffff;
}

.page-main {
    max-width: 1100px;
    margin: 0 auto;
}

.page-title {
    margin: 0 0 40px;
    font-size: 42px;
    line-height: 1.2;
    color: #12304a;
    font-weight: 700;
}

.page-body {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body h2 {
    margin-top: 45px;
    margin-bottom: 20px;
    font-size: 30px;
    color: #12304a;
}

.page-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 23px;
    color: #12304a;
}

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

.contact-page {
    padding: 20px 0 80px;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-intro h2 {
    font-size: 32px;
    color: #12304a;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info,
.contact-form-area {
    padding: 40px;
    background: #f5f8fc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.contact-info h2,
.contact-form-area h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 26px;
    color: #12304a;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #12304a;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-area p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-quote-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: #0066cc;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.contact-quote-btn:hover {
    background: #004c99;
}

.wpcf7 {
    background: #f7f9fc;
    padding: 40px;
    border-radius: 10px;
}

.wpcf7 label {
    display: block;
    margin-bottom: 18px;
    color: #12304a;
    font-weight: 600;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.wpcf7 textarea {
    height: 150px;
}

.wpcf7-submit {
    background: #102d50 !important;
    color: white !important;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.wpcf7-submit:hover {
    background: #0066cc !important;
}



.about-page {
    width: 100%;
}

.about-intro {
    padding: 90px 0;
    background: #f5f8fc;
}

.about-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-intro h2 {
    margin: 0 auto 25px;
    max-width: 800px;
    color: #12304a;
    font-size: 42px;
    line-height: 1.2;
}

.about-intro p {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.about-section {
    padding: 80px 0;
}

.about-section-title {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-section-title h2 {
    margin: 0 0 15px;
    color: #12304a;
    font-size: 34px;
}

.about-section-title p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.about-cards {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    position: relative;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.about-card-number {
    margin-bottom: 20px;
    color: #0066cc;
    font-size: 14px;
    font-weight: 700;
}

.about-card h3 {
    margin: 0 0 15px;
    color: #12304a;
    font-size: 23px;
}

.about-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.about-light {
    background: #f5f8fc;
}

.about-features {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-feature {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.about-feature h3 {
    margin: 0 0 15px;
    color: #12304a;
    font-size: 20px;
}

.about-feature p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.about-oem {
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        #12304a,
        #0066cc
    );
    color: #ffffff;
    text-align: center;
}

.about-oem > div {
    max-width: 800px;
    margin: auto;
}

.about-oem .about-label {
    color: #ffffff;
}

.about-oem h2 {
    margin: 0 0 20px;
    font-size: 38px;
}

.about-oem p {
    margin: 0 auto 30px;
    max-width: 700px;
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.8;
}

.about-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #12304a !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

.about-btn:hover {
    background: #f0f4f8;
}

.product-gallery-main {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.product-gallery-main a {
    display: block;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.product-gallery-item {
    display: block;
    width: 85px;
    height: 85px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.product-gallery-item:hover {
    border-color: #0066cc;
}

.product-lightbox-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 30px;
    box-sizing: border-box;
}

.product-lightbox-overlay.active {
    display: flex;
}

.product-lightbox-overlay img {
    display: block;
    max-width: 92vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.product-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 42px;
    line-height: 45px;
    cursor: pointer;
    z-index: 1000002;
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    background: transparent;
}

.product-lightbox-close:hover {
    opacity: 0.7;
}

.product-lightbox-prev,
.product-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 32px;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
    z-index: 1000001;
    transition: all 0.2s ease;
}

.product-lightbox-prev {
    left: 25px;
}

.product-lightbox-next {
    right: 25px;
}

.product-lightbox-prev:hover,
.product-lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%)
        scale(1.08);
}

section.section .products .product-box a {
    display: block;
    width: 100%;
}

section.section .products .product-box img.home-product-image {
    display: block !important;
    width: 100% !important;
    height: 260px !important;
    max-width: 100% !important;
    max-height: 260px !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 auto !important;
    background: #fff !important;
}

section.section .products .product-box {
    overflow: hidden;
}

/* =========================
   @(MAX-WIDTH:768PX)
========================= */

@media (max-width:768px) {
.header-container {
    height: 70px;
    display: flex;
}

.site-logo a {
    font-size: 21px;
}

.mobile-menu-btn {
    display: block;
}

.main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    z-index: 9999;
}

.main-nav.active {
    display: block;
}

.main-nav a {
    display: block;
    padding: 14px 30px;
    font-size: 16px;
}

.header-btn {
    display: none;
}

.hero {
    min-height: 520px;
    background-position: center;
}

.hero .container {
    width: 90%;
    margin: auto;
    padding: 25px;
}

.hero h1 {
    font-size: 30px;
}

.hero p {
    font-size: 15px;
}

.products {
    display: block;
}

.product-box {
    margin-bottom: 25px;
}

.product-box img {
    height: 220px;
}

.advantages {
    display: block;
    grid-template-columns: 1fr;
}

.advantages div {
    margin-bottom: 20px;
}

.section {
    padding: 40px 0;
}

h2 {
    font-size: 26px;
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.process {
    grid-template-columns: 1fr;
}

.certificates {
    flex-wrap: wrap;
}

.hero-content {
    padding: 25px;
}

.product-detail-top {
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-info h1 {
    font-size: 28px;
}

.product-buttons {
    display: block;
}
.contact .quote-btn {
        display: block;
        width: auto;
        margin-left: 15px;
        margin-right: 15px;
}
.quote-btn,
.whatsapp-btn {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.oem-list {
    grid-template-columns: 1fr;
}

.product-description h2,
.oem-box h2,
.related-products h2 {
    font-size: 24px;
}

.main-product-image {
    height: 320px;
}

.gallery-thumbs img {
    width: 65px;
    height: 65px;
}

.category-grid {
    grid-template-columns: 1fr;
}

.category-box img {
    height: 250px;
}

.product-detail-layout {
    grid-template-columns: 1fr;
}

.category-banner {
    padding: 50px 20px;
}

.category-banner h1 {
    font-size: 30px;
}

.product-top {
    display: block;
}

.product-main-image {
    height: auto;
    max-width: 100%;
}

.adv-grid {
    display: block;
}

.adv-grid div {
    margin-bottom: 20px;
}

.whatsapp-btn {
    margin-left: 0;
    margin-top: 15px;
}

.page-content {
    padding: 50px 0;
}

.page-main {
    width: 90%;
}

.page-title {
    font-size: 30px;
    margin-bottom: 30px;
}

.page-body {
    font-size: 16px;
}

.page-body h2 {
    font-size: 25px;
}

.page-body h3 {
    font-size: 21px;
}

.contact-page {
    padding: 10px 0 50px;
}

.contact-intro h2 {
    font-size: 26px;
}

.contact-intro p {
    font-size: 15px;
}

.contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-info,
    .contact-form-area {
    padding: 25px;
}


.about-intro {
    padding: 60px 20px;
}

.about-intro h2 {
    font-size: 30px;
}

.about-intro p {
    font-size: 15px;
}

.about-section {
    padding: 55px 0;
}

.about-section-title {
    width: 90%;
    margin-bottom: 35px;
}

.about-section-title h2 {
    font-size: 28px;
}

.about-cards {
    grid-template-columns: 1fr;
}

.about-features {
    grid-template-columns: 1fr;
}

.about-card,
    .about-feature {
    padding: 25px;
}

.about-oem {
    padding: 65px 20px;
}

.about-oem h2 {
    font-size: 30px;
}

.about-oem p {
    font-size: 15px;
}

.product-gallery-thumbs {
    gap: 8px;
}

.product-gallery-item {
    width: 65px;
    height: 65px;
}

.product-lightbox-overlay {
    padding: 15px;
}

.product-lightbox-overlay img {
    max-width: 96vw;
    max-height: 85vh;
}

.product-lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 36px;
}

.product-lightbox-prev,
    .product-lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 25px;
    line-height: 42px;
}

.product-lightbox-prev {
    left: 10px;
}

.product-lightbox-next {
    right: 10px;
}

section.section .products .product-box img.home-product-image {
    width: 100% !important;
    height: 220px !important;
    max-height: 220px !important;
    object-fit: contain !important;
}

}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #25D366;

    border-radius: 50%;

    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 3px 12px rgba(0,0,0,0.15);

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


.whatsapp-float-icon {
    width: 40px;
    height: 40px;

    display: block;
}


.whatsapp-float:hover {
    color: #20bd5a;

    transform: scale(1.08);

    box-shadow: 0 5px 16px rgba(0,0,0,0.2);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .whatsapp-float {

        right: 16px;
        bottom: 20px;

        width: 48px;
        height: 48px;
    }

    .whatsapp-float-icon {

        width: 37px;
        height: 37px;
    }

}
/* ========================================
   OTHER PRODUCTS
======================================== */

.other-products {
    padding-top: 60px;
    padding-bottom: 60px;
}


.other-products .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.other-products .product-box {
    overflow: hidden;
}


.other-product-image {
    display: block !important;

    width: 100% !important;
    height: 240px !important;

    max-width: 100% !important;
    max-height: 240px !important;

    object-fit: contain !important;
    object-position: center center !important;

    background: #fff;
}


/* Mobile */

@media (max-width: 768px) {

    .other-products {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    .other-products .products {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .other-product-image {
        height: 220px !important;
        max-height: 220px !important;
    }

}
#product-lightbox,
#product-lightbox-image {
    touch-action: none;
    overscroll-behavior: contain;
}