.products-section {
    padding-bottom: 30px;
}

.product-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid #ECECEC;
    border-radius: 25px 25px 5px 5px;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.image-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 15px;
}

.image-box img,
.image-box video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.product-item:hover .image-box img,
.product-item:hover .image-box video {
    transform: scale(1.05);
}

.product-content {
    padding: 15px 15px;
    text-align: center;
}

.item-features {
    font-size: 12px;
    color: var(--site-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    display: block;
}

.item-title {
    margin-bottom: 10px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-title h3,
.item-title h2 {
    font-size: 18px;
    color: #111;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.item-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.item-buttons a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 1;
    transition: all 0.3s ease;
    gap: 8px;
}

.item-buttons a i {
    font-size: 20px;
    color: #292D32;
}

.item-buttons a span {
    font-size: 12.5px;
    color: #292D32;
    font-weight: 600;
    text-transform: capitalize;
}

.item-buttons a:hover i,
.item-buttons a:hover span {
    color: var(--site-color);
}

.item-buttons .divider {
    width: 1px;
    height: 25px;
    background: #f0f0f0;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.view-more-btn {
    display: inline-block;
    background-color: var(--site-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.view-more-btn:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1200px) {

    .item-title h3,
    .item-title h2 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .product-grid>div {
        margin-bottom: 20px;
    }

    .item-buttons a span {
        font-size: 14.5px;
    }

    .item-buttons a i {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .item-buttons a {
        gap: 4px;
    }

    .item-buttons a span {
        font-size: 12.5px;
    }

    .item-buttons a i {
        font-size: 16px;
    }
}

.product-card-v2 {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card-v2 .image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f9f9f9;
}

.product-card-v2 .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card-v2:hover .image-wrapper img {
    transform: scale(1.1);
}

.product-card-v2 .content-wrapper {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-card-v2 .title-box {
    flex: 1;
}

.product-card-v2 .title-box h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1c1c1c;
    transition: color 0.3s;
}

.product-card-v2:hover .title-box h2 {
    color: var(--site-color);
}

.product-card-v2 .detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 25px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.product-card-v2 .detail-btn:hover {
    background: var(--site-color);
    border-color: var(--site-color);
    color: #fff;
}

.pagination_style1 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.pagination_style1 li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #1c1c1c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination_style1 li.active a,
.pagination_style1 li a:hover {
    background: var(--site-color);
    border-color: var(--site-color);
    color: #fff;
}

.pagination_style1 li.next_page a {
    width: auto;
    border-radius: 50px;
    padding: 0 25px;
}

@media (max-width: 767px) {
    .product-card-v2 .content-wrapper {
        padding: 15px;
    }

    .product-card-v2 .title-box h2 {
        font-size: 16px;
    }

    .product-card-v2 .detail-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}

.product-detail-section {
    padding: 0;
    background: #fff;
}

.product-main {
    margin-bottom: 50px;
}

.gallery-main {
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.gallery-main img,
.gallery-main video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumb-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--site-color);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-box {
    padding-left: 30px;
}

.product-info-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.product-info-box .short-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-info-box .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.product-info-box .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.product-info-box .feature-list li i {
    color: var(--site-color);
    font-size: 18px;
    width: 25px;
}

.btn-group-custom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
}

.btn-call {
    background: var(--site-color);
    color: #fff;
}

.btn-call:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

.service-details-content .nav-tabs {
    border: none;
    gap: 10px;
    margin-bottom: 30px;
}

.service-details-content .nav-link {
    border: 1px solid #eee !important;
    border-radius: 20px 20px 0px 0px !important;
    padding: 12px 35px;
    color: #444;
    font-weight: 700;
    background: #f9f9f9;
    transition: all 0.3s;
}

.service-details-content .nav-link.active {
    background: var(--site-color) !important;
    color: #fff !important;
    border-color: var(--site-color) !important;
}

.tab-content-box {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 0 0 20px 20px;
    line-height: 1.8;
    color: #555;
    background: #fff;
}

@media (max-width: 991px) {
    .product-info-box {
        padding-left: 0;
        margin-top: 40px;
    }

    .product-info-box h2 {
        font-size: 26px;
    }
}