/*
Theme Name: GoFeedPet
Theme URI: https://gofeedpet.com/
Author: GoFeedPet Team
Author URI: https://gofeedpet.com
Description: Professional pet product review theme for GoFeedPet. Clean, modern design focused on honest product reviews and pet care content.
Version: 1.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, reviews, pet-care, two-columns, custom-background, custom-header, custom-menu, featured-images, flexible-header, full-width-template, translation-ready
Text Domain: gofeedpet

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Custom Styles for PetpalPro Static Theme */

/* ========================================
   Header User & Cart Icons
========================================== */
.tgmenu__action ul.list-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-search {
    margin: 0 10px 0 0 !important;
}

.header-user,
.header-cart {
    margin: 0 10px !important;
}

/* Remove divider line between user and cart icons */
.header-cart::before {
    display: none !important;
}

/* ========================================
   Shopping Cart Sidebar
========================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.cart-sidebar.active .cart-sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e5e5;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.cart-sidebar-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-sidebar-close:hover {
    background: #8b5cf6;
    color: #fff;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-loading {
    text-align: center;
    padding: 50px 20px;
    color: #8b5cf6;
}

.cart-loading i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.cart-loading p {
    margin: 0;
    color: #666;
}

.cart-empty {
    text-align: center;
    padding: 50px 20px;
    color: #999;
}

.cart-items {
    margin-bottom: 0;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    align-items: flex-start;
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.cart-item-details {
    flex: 1;
    padding-right: 30px;
}

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-quantity {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.cart-item-quantity .woocommerce-Price-amount {
    color: #1a1a1a;
    font-weight: 600;
}

.cart-item-remove {
    position: absolute;
    top: 20px;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 16px;
}

.cart-item-remove:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.cart-sidebar-footer {
    padding: 25px 30px;
    border-top: 1px solid #e5e5e5;
    background: #f9f9f9;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.cart-subtotal .amount {
    color: #8b5cf6;
}

.btn-view-cart,
.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.btn-view-cart {
    background: #fff;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
}

.btn-view-cart:hover {
    background: #8b5cf6;
    color: #fff;
}

.btn-checkout {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border: 2px solid transparent;
    color: #fff;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Loading animation for add to cart button */
.add-to-cart-btn.loading,
.product__action .btn-icon.loading {
    pointer-events: none;
    opacity: 0.7;
}

.add-to-cart-btn.loading i,
.product__action .btn-icon.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Prevent body scroll when sidebar is open */
body.cart-sidebar-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

.search-open-btn,
.user-btn,
.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    transition: all 0.3s ease;
    position: relative;
}

.search-open-btn i,
.user-btn i,
.cart-btn i {
    font-size: 20px;
    line-height: 1;
    transition: color 0.3s ease;
}

.search-open-btn:hover,
.user-btn:hover,
.cart-btn:hover {
    background: #8b5cf6;
    transform: scale(1.1);
}

.search-open-btn:hover i,
.user-btn:hover i,
.cart-btn:hover i {
    color: #fff;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* Remove left margin from about content */
.about__content-two {
    margin-left: 0 !important;
}

/* About section image wrapper with multiple images */
.about__img-wrap-two {
    position: relative;
    padding: 20px;
}

.about__img-wrap-two .main-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about__img-wrap-two .sub-img {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Decorative shapes */
.about__shapes .shape-one {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: auto;
    z-index: -1;
    opacity: 0.6;
}

.about__shapes .shape-two {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 100px;
    height: auto;
    z-index: -1;
    opacity: 0.5;
}

/* Reduce top spacing in about section */
.about__area-two {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Adjust section title spacing */
.about__content-two .section__title {
    margin-bottom: 15px !important;
}

/* Reduce paragraph spacing */
.about__content-two p {
    margin-bottom: 20px !important;
    line-height: 1.8;
    color: #666;
}

/* Enhanced list styling with better icons */
.about__list-box ul.list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.about__list-box ul.list-wrap li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about__list-box ul.list-wrap li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about__list-box ul.list-wrap li:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-3px);
}

.about__list-box ul.list-wrap li:hover::before {
    transform: scaleY(1);
}

.about__list-box ul.list-wrap li i {
    font-size: 32px;
    color: #8b5cf6;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about__list-box ul.list-wrap li:hover i {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #fff;
    transform: scale(1.1);
}

.about__list-box ul.list-wrap li span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Enhanced section title */
.about__content-two .section__title .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content-two .section__title .sub-title i {
    font-size: 18px;
}

.about__content-two .section__title .title {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 10px;
}

/* Ensure proper spacing */
.about__content-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.about__experience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    position: relative;
    overflow: hidden;
    height: 80px;
}

.about__experience-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.about__experience-item .icon {
    font-size: 36px;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.about__experience-item .content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1;
}

.about__experience-item .content p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Enhanced button styling */
.about__content-bottom .btn {
    padding: 0 35px;
    height: 80px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.about__content-bottom .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about__content-bottom .btn:hover::before {
    left: 100%;
}

.about__content-bottom .btn i {
    font-size: 20px;
}

.about__content-bottom .btn svg {
    transition: transform 0.3s ease;
}

.about__content-bottom .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.about__content-bottom .btn:hover svg {
    transform: translateX(5px);
}

/* ========================================
   Products Section Styles
========================================== */
.products__area {
    background: #f8f9fa;
    padding: 100px 0;
}

.product__item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.product__thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product__item:hover .product__thumb img {
    transform: scale(1.1);
}

.product__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product__badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product__action {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product__item:hover .product__action {
    opacity: 1;
    transform: translateX(0);
}

.product__action .btn-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product__action .btn-icon:hover {
    background: #8b5cf6;
    color: #fff;
    transform: scale(1.1);
}

/* Hide WooCommerce default "View cart" button */
.added_to_cart {
    display: none !important;
}

/* Product Details Page Styles */
.product__details-content {
    padding-top: 10px;
}

.product__details-content .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.product__reviews-wrap {
    gap: 0 !important;
}

/* Product Share Buttons */
.product__details-social .list-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product__details-social .list-wrap li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product__details-social .list-wrap li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product__details-social .list-wrap li a.fa-facebook-f:hover,
.product__details-social .list-wrap li a i.fab.fa-facebook-f:hover {
    background: #1877f2;
    color: #fff;
}

.product__details-social .list-wrap li a:has(.fa-facebook-f):hover {
    background: #1877f2;
    color: #fff;
}

.product__details-social .list-wrap li a:has(.fa-twitter):hover {
    background: #1da1f2;
    color: #fff;
}

.product__details-social .list-wrap li a:has(.fa-whatsapp):hover {
    background: #25d366;
    color: #fff;
}

.product__details-social .list-wrap li a:has(.fa-pinterest-p):hover {
    background: #e60023;
    color: #fff;
}

.product__details-social .list-wrap li a:has(.fa-link):hover {
    background: #8b5cf6;
    color: #fff;
}

/* GoFeedPet Logo Styles */
.tgmenu__nav .logo img {
    max-height: 50px !important;
    height: 50px;
    width: auto;
}

.logo img,
.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover img,
.nav-logo a:hover img {
    transform: scale(1.05);
}

/* Preloader icon animation */
.loader-icon img {
    animation: pawBounce 1.2s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 100% {
        transform: scale(0.9) rotate(-5deg);
        opacity: 0.7;
    }
    25% {
        transform: scale(1.05) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: scale(1.05) rotate(-5deg);
        opacity: 1;
    }
}

.product__content {
    padding: 25px;
}

.product__category {
    display: inline-block;
    color: #8b5cf6;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product__title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.product__title a:hover {
    color: #8b5cf6;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
}

.product__rating i {
    color: #fbbf24;
    font-size: 14px;
}

.product__rating span {
    margin-left: 8px;
    color: #999;
    font-size: 13px;
}

.product__price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product__price .new-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
}

.product__price .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

/* WooCommerce Price Styling */
.product__price .price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product__price .price ins {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
}

.product__price .price del {
    font-size: 16px;
    color: #999;
}

.product__price .price .amount,
.product__price .price .woocommerce-Price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
}

.product__price .price del .amount,
.product__price .price del .woocommerce-Price-amount {
    font-size: 16px;
    color: #999;
}

/* View All Button */
.btn-two {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-two:hover {
    background: #8b5cf6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Responsive styles for products section */
@media (max-width: 991px) {
    .product__thumb img {
        height: 240px;
    }
    
    .product__content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .product__thumb img {
        height: 220px;
    }
    
    .product__item {
        margin-bottom: 20px;
    }
}

/* ========================================
   Services Section Styles
========================================== */
.services__area-two {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.services__area-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%238b5cf6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.services__area-two .container {
    position: relative;
    z-index: 1;
}

.services__item-two {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.services__item-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services__item-two::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.services__item-two:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.services__item-two:hover::before {
    transform: scaleX(1);
}

.services__item-two:hover::after {
    bottom: -50px;
    right: -50px;
}

.services__item-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.services__icon-two {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 15px;
    font-size: 36px;
    color: #8b5cf6;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.services__icon-two::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.services__item-two:hover .services__icon-two {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

.services__item-two:hover .services__icon-two::before {
    opacity: 1;
}

.services__item-top-title .title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.services__item-two:hover .services__item-top-title .title {
    color: #8b5cf6;
}

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

/* Add spacing between sections */
.about__area-two {
    margin-bottom: 0;
}

.services__area-two {
    margin-top: 0;
    margin-bottom: 0;
}

.products__area {
    margin-top: 0;
}

/* Responsive styles for about section */
@media (max-width: 991px) {
    .about__img-wrap-two .sub-img {
        width: 150px;
        height: 150px;
        left: -20px;
        bottom: -15px;
    }
    
    .about__shapes .shape-one,
    .about__shapes .shape-two {
        display: none;
    }
    
    .about__content-two .section__title .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about__list-box ul.list-wrap {
        grid-template-columns: 1fr;
    }
    
    .about__img-wrap-two .sub-img {
        width: 120px;
        height: 120px;
        border: 5px solid #fff;
    }
    
    .about__content-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========TABLE OF CONTENTS==========
00. Body, links, hgroup, paragraphs, general styles
01. Fixed header & Navigation
02. Section Intro (Home)
03. Section About
04. Section Resume
05. Section Portfolio
06. Section Blog
07. Section Contact
08. Footer
09. Loader
10. Responsive design

/*--------------------------------------------------
    00. Body, links, hgroup, paragraphs, general styles
---------------------------------------------------*/

:root {
    --tp-theme-primary: #674df0;
    --tp-theme-secondary: #29f0b5;
}

span.ajax-loader {
    display: none !important;
}

div.wpcf7-response-output {
    color: #0a0a0a;
    margin: 15px 0 0 0 !important;
}

.search-custom form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d1d1;
    color: #222222;
}

.search-custom form {
    position: relative;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.search-custom form button {
    border: 1px solid var(--tg-theme-primary);
    color: #fff;
    font-size: 16px;
    position: absolute;
    cursor: pointer;
    float: right;
    background: var(--tg-theme-primary);
    top: 0;
    right: 0;
    padding: 10px 20px;
    letter-spacing: 0;
}

span.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #111;
    display: inline-block;
    margin-bottom: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: #121212;
    color: #121212;
}

.search-custom form button:hover {
    background: var(--tg-theme-secondary);
    color: #fff;
    border-color: var(--tg-theme-secondary);
}

.search-custom h4 {
    font-weight: 500;
    font-size: 20px;
    color: #2e2e2e;
    text-transform: inherit;
    margin-bottom: 20px;
}

p.form-submit {
    text-align: center;
}

.wpcf7-spinner {
    display: none !important;
}

form.invalid .wpcf7-spinner {
    display: none;
}

p.logged-in-as {
    margin-bottom: 10px;
}

.widget_categories ul {
    padding: 0;
    margin: 0;
}

.widget_categories ul li {
    margin-bottom: 20px;
    line-height: 1.4;
    list-style: none;
}

.widget_categories ul li:last-child {
    margin-bottom: 0;
}

.widget_categories ul li a {
    color: var(--tg-heading-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.widget_tag_cloud ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.widget_tag_cloud ul li {
    list-style: none;
}

.widget_tag_cloud ul li a {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--tg-theme-primary) !important;
    background: #F4EBF4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: block;
    line-height: 1;
    padding: 9px 16px 12px;
}

.widget_tag_cloud ul li a:hover {
    background: var(--tg-theme-primary) !important;
    color: var(--tg-color-white-default) !important;
}

.blog__details-content-bottom .post-tags .list-wrap a {
    font-size: 15px;
    font-weight: 500;
    color: var(--tg-theme-primary);
    background: #F4EBF4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 9px 16px 12px;
    display: block;
    line-height: 1;
}

.blog__details-content-bottom .post-tags .list-wrap a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
}

a.comment-reply-link {
    background: #F4EBF4;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 6px 17px;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--tg-theme-primary);
    line-height: 1.5;
}

a.comment-reply-link:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
}

.blog__post-meta ul.post-categories {
    display: flex;
    padding-left: 0;
}

.blog__post-meta ul.post-categories li {
    display: block;
}

ul.post-categories {
    display: flex;
    padding-left: 0;
}

ul.post-categories li {
    margin-right: 8px;
}

.blog__post-content-three a.btn img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.pagination span.current {
    color: var(--tg-color-white-default);
    background: var(--tg-theme-secondary);
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: var(--tg-fw-semi-bold);
    border: 1px solid var(--tg-theme-secondary);
    line-height: 1;
    display: flex;

}

.pagination__wrap ul li a.page-numbers {
    color: var(--tg-theme-primary);
}

.pagination__wrap ul li a.page-numbers:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.blog__post-thumb-five.height-auto img {
    height: auto;
}

.brand__item img {
    cursor: default;
}

.brand__item a img {
    cursor: pointer;
}

.elementor .review__box-content img {
    margin-bottom: 12px;
}

form.wpcf7-form .form-grp p {
    margin-bottom: 0;
}

form.wpcf7-form p br {
    display: none;
}

.elementor .blog__post-mask img {
    height: 100%;
    max-width: unset;
}

.elementor .instagram__item img {
    height: 100%;
    max-width: unset;
}

.wpcf7-form .submit__btn p {
    margin-bottom: 0;
}

.wpcf7-form .submit__btn input.wpcf7-submit,
.registration__form-wrap input.wpcf7-submit,
.contact__form input.wpcf7-submit {
    background: transparent;
    user-select: none;
    -moz-user-select: none;
    border: medium none;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    color: var(--tg-color-white-default);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--tg-heading-font-family);
    gap: 10px;
    --arrow-hover-move-x: -110%;
}

.registration__inner-wrap .submit__btn button:hover input.wpcf7-submit {
    color: var(--tg-theme-primary);
}

.registration__inner-wrap .wpcf7 form.invalid .wpcf7-response-output,
.registration__inner-wrap .wpcf7 form .wpcf7-response-output {
    color: #fff;
    border-color: #fff;
}

.registration__inner-wrap span.wpcf7-not-valid-tip {
    color: #fff;
}

.elementor .blog__post-thumb-two img {
    border-radius: 28px;
    height: 272px;
}

.elementor .about__video-wrap img {
    border-radius: 126px;
}

.elementor .testimonial__img-mask-two img {
    max-width: unset;
    height: 100%;
}

.elementor .about__img-four img {
    border-radius: 15px;
}

.elementor-lightbox {
    display: none !important;
}

.registration__form span.wpcf7-spinner {
    display: none;
}

.registration__form-wrap p button,
.contact__form p button {
    margin-bottom: -15px;
}

.registration__form-wrap button:hover input.wpcf7-submit {
    color: var(--tg-color-white-default);
}

.elementor .team__details-img img {
    border-radius: 245px;
}

.woocommerce-breadcrumb {
    display: none;
}

.woocommerce .star-rating {
    color: var(--tg-color-yellow-default);
    width: 100px;
    letter-spacing: 2.5px;
    font-size: 17px;

}

.woocommerce .woocommerce-product-rating .star-rating {
    margin: 4px 8px 0 0;
}

.woocommerce-review-link {
    font-size: 14px;
    color: #778199;
}

.woocommerce .product__details-content .woocommerce-Price-amount {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 600;
    color: var(--tg-theme-primary);
    padding-bottom: 15px;
    font-family: var(--tg-heading-font-family);
    margin-top: 0px;
    line-height: var(--tg-heading-line-height);
    text-transform: unset;
}

.woocommerce .single_add_to_cart_button {
    border: none;
}

.woocommerce .woocommerce-product-rating {
    display: flex;
}

.product__details-content p.price {
    line-height: var(--tg-heading-line-height);
    margin-top: 0;
}

.product__reviews-wrap {
    margin-bottom: 8px;
}

.product__item .product__reviews-wrap {
    margin-bottom: 0;
}

.product__details-checkout br {
    display: none;
}

.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
    margin: 0;
}

.product-desc-wrap .nav-tabs li.active .nav-link {
    background: var(--tg-theme-secondary);
    color: var(--tg-color-white-default);
}

.woocommerce .comment-respond {
    background: none;
}

.woocommerce .comment-form-cookies-consent {
    display: none;
}

.woocommerce #reviews #comment {
    width: 100%;
}

.tp-product-details-review-avater-thumb img {
    width: 60px;
    height: auto;
    margin-right: 20px;
}

.woocommerce span.onsale {
    display: none;
}

.tp-product-details-review-avater-thumb {
    flex: 0 0 auto;
}

.woocommerce .tp-product-details-review-avater-content .star-rating {
    font-size: 13px;
    width: 80px;
    margin-bottom: 8px;
}

.tp-product-details-review-avater {
    margin-bottom: 30px;
}

.tp-product-details-review-avater-content h5 {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 5px;
}

.tp-product-details-review-avater-meta {
    position: relative;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-theme-primary);
}

.tp-product-details-review-list>h5.title {
    font-size: 22px;
    margin-bottom: 30px;
}

.tp-product-details-review-form-title {
    font-size: 22px;
    margin-bottom: 25px;
}

.woocommerce .comment-form-rating span a {
    color: var(--tg-color-yellow-default);
}

.woocommerce .form-submit {
    float: left;
}

.woocommerce input.submit {
    user-select: none;
    background: var(--tg-theme-primary) none repeat scroll 0 0 !important;
    border-radius: 100px !important;
    color: var(--tg-color-white-default) !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    margin-bottom: 0 !important;
    padding: 18px 30px 18px 30px !important;
    text-align: center;
    text-transform: capitalize;
    border: none !important;
}

.woocommerce input.submit:hover,
.woocommerce input.submit:focus-visible {
    color: var(--tg-color-white-default) !important;
    background: var(--tg-theme-secondary) !important;
}

.product-desc-review {
    padding: 35px;
}

.woocommerce p.comment-notes,
.comment-form-rating p.stars {
    margin-bottom: 5px;
}

.width50 {
    width: 50%;
    display: inline-block;
}

.woo-form .col-lg-6:first-child {
    padding-right: 0;
}

.product__reviews .woocommerce-product-rating .star-rating span {
    display: inline-block;
    color: var(--tg-color-yellow-default);
    font-size: 17px;
}

.woocommerce-product-details__short-description p {
    margin-bottom: 25px;
}

span.size-title+p {
    display: none;
}

.product__reviews .woocommerce-review-link span {
    display: inline-block;
}

.related-product-area .product__reviews-wrap {
    margin-bottom: 0;
}

.woocommerce ins {
    text-decoration: none;
}

.price ins {
    order: -1;
}

.pagination__wrap ul {
    margin-bottom: 0;
}

.pagination__wrap ul li {
    list-style: none;
}

.pagination__wrap ul li span.current {
    color: var(--tg-color-white-default);
    background: var(--tg-theme-secondary);
    border: 1px solid var(--tg-theme-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: var(--tg-fw-semi-bold);
    line-height: 1;
}

.pagination__wrap ul li a.page-numbers:hover {
    color: #fff;
}

.product__add-cart a.btn {
    overflow: hidden !important;
    font-size: 15px !important;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) !important;
    border-radius: 8px !important;
    padding: 12px 10px 9px !important;
    background-color: var(--tg-theme-primary) !important;
    color: var(--tg-color-white-default) !important;
    display: inline-flex !important;
}

.woocommerce a.added_to_cart {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 8px;
    color: var(--tg-color-white-default);
    cursor: pointer;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 16px 10px 13px;
    margin-top: 10px;
    text-align: center;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    font-family: var(--tg-heading-font-family);
    gap: 10px;
    --arrow-hover-move-x: -110%;
}

.woocommerce a.added_to_cart::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--tg-theme-secondary);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.woocommerce a.added_to_cart:hover::before,
.woocommerce a.added_to_cart:focus-visible::before {
    top: -40%;
}

.woocommerce a.added_to_cart:hover,
.woocommerce a.added_to_cart:focus-visible {
    color: var(--tg-color-white-default);
    background: var(--tg-theme-primary);
}

.product__add-cart a.btn::after {
    top: -3px;
    position: relative;
    margin-left: 2px !important;
}

.product__action .yith-wcwl-add-to-wishlist-button__label {
    display: none;
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg {
    color: var(--tg-theme-primary);
    width: 22px;
}

.product__action a.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor:hover svg {
    color: #FFF;
}

.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon {
    color: var(--tg-theme-primary);
}

.product-popup__modal .modal-dialog {
    max-width: 1200px;
    border-radius: 0;
}

.product-popup__modal .modal-content {
    padding: 40px;
    border-radius: 0;
}

.product-popup__modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.product-popup__modal-close-btn {
    display: inline-block;
    font-size: 16px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    background-color: transparent;
    color: var(--tp-text-1);
    border-radius: 50%;
    position: relative;
    z-index: 11;
    border: 1px solid var(--tg-theme-primary);
}

.product-popup__modal-close-btn svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    color: var(--tg-theme-primary);
}

.modall h2.title {
    display: none;
}

.product__code {
    margin-bottom: 8px;
}

.cart-plus-minus input {
    padding-left: 45px;
    padding-right: 30px;
}

.product__details-content .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg {
    border: 1px solid #C7C7C7;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 5px;
}

.product__details-content .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor:hover svg {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    border-color: var(--tg-theme-primary);
}

.modall .tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tg-theme-primary);
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid #CAD0DE;
    border-radius: 30px;
    line-height: 1;
    margin-bottom: 15px;
}

.modall .price {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 600;
    color: var(--tg-theme-primary);
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
}

.modall h2.tp-product-details-title {
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.1;
}

.modall .product__details-bottom {
    padding-top: 10px;
}

.product__action a[type=button] {
    color: var(--tg-theme-primary);
}

.product__action a[type=button]:hover {
    color: #FFF;
}

.woocommerce table.shop_table td {
    border-top: none;
}

.woocommerce-cart table.cart img {
    width: 85px;
    height: auto;
}

.woocommerce table.shop_table {
    background: #ffffff;
    border-color: #eaedff;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.woocommerce table.shop_table th {
    padding: 15px;
    font-family: var(--tg-heading-font-family);
    background-color: var(--tg-theme-primary);
    color: #FFF;
    font-size: 18px;
    border-right: none !important;
    line-height: 1;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-bottom: 1px solid rgba(6, 7, 40, 0.1);
    border-right: 1px solid rgba(6, 7, 40, 0.1);
}

.woocommerce table.shop_table td {
    padding: 20px;
}

.woocommerce-message {
    border-color: var(--tg-theme-primary);
    outline: 0;
    margin-bottom: 50px;
}

.woocommerce-message::before {
    color: var(--tg-theme-primary);
}

.woocommerce .woocommerce-message .wc-forward {
    font-size: 18px;
    font-weight: 700;
    background: var(--tg-theme-primary);
    border-radius: 50px;
    color: var(--tg-color-white-default);
    font-family: var(--tg-heading-font-family);
    line-height: 1;
    display: block;
    text-align: center;
    padding: 18px 20px 14px;
    flex-grow: 1;
}

.woocommerce .woocommerce-message .wc-forward:hover {
    background: var(--tg-theme-secondary);
    color: var(--tg-color-white-default);
}

.comment-form-rating select {
    display: none !important;
}

button.tp-cart-action-btn {
    border: none;
    background: none;
}

.product-name a {
    color: var(--tg-body-color);
}

.product-price span {
    font-size: 22px;
    font-weight: 600;
    color: var(--tg-theme-primary);
}

.woocommerce a.remove {
    color: var(--tg-theme-primary) !important;
    font-size: 23px;
    height: 30px;
    width: 30px;
    display: inline-block;
}

.woocommerce a.remove:hover {
    color: #fff !important;
    background: var(--tg-theme-primary);
}

.tp-cart-coupon-input input {
    background: #FFFFFF;
    border: 1px solid #D6D9DC;
    height: 54px;
    line-height: 46px;
    margin-right: 10px;
    max-width: 282px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 100px;
}

button.btn:disabled {
    pointer-events: auto;
    ;
}

.tp-cart-checkout-wrapper {
    padding: 35px;
    background: var(--tg-border-5);
    overflow: hidden;
}

.tp-cart-checkout-wrapper ul {
    border: 1px solid rgba(6, 7, 40, 0.1);
    padding-left: 0;
    margin-bottom: 20px;
}

.tp-cart-checkout-wrapper ul li {
    list-style: none;
}

.tp-cart-checkout-wrapper ul li {
    list-style: none;
    padding: 21px 30px;
    border-bottom: 1px solid rgba(6, 7, 40, 0.1);
    font-weight: 500;
    line-height: 150%;
}

.tp-cart-checkout-wrapper ul li:last-child {
    border-bottom: none;
}

.tp-cart-checkout-wrapper ul li span {
    float: right;
}

a.checkout-button {
    float: right;
}

.woocommerce-billing-fields__field-wrapper .form-row input.input-text,
.woocommerce-additional-fields .form-row textarea.input-text {
    border: 1px solid #E1E4E7;
    background: var(--tg-color-white-default);
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-body-color);
    padding: 15px 20px;
    height: 50px;
    display: block;
    border-radius: 100px;
    line-height: 1;
}

.woocommerce .select2-selection {
    border-radius: 0;
    border: 1px solid #E1E4E7;
    float: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 100px;
}

.woocommerce form .form-row {
    margin-bottom: 10px;
}

.woocommerce-additional-fields .form-row textarea.input-text {
    min-height: 130px;
    max-height: 130px;
    padding: 20px 30px;
}

.woocommerce-additional-fields .form-row textarea.input-text:focus,
.woocommerce-billing-fields__field-wrapper .form-row input.input-text:focus {
    outline: none;
    border-color: #E1E4E7;
}

.woocommerce-additional-fields {
    margin-top: 40px;
}

.woocommerce form .form-row label {
    margin-bottom: 5px;
}

.woocommerce .woocommerce-additional-fields .form-row label {
    margin-bottom: 10px !important;
}

.woocommerce-checkout-review-order ul {
    padding-left: 0;
    margin-bottom: 0;
}

.woocommerce-checkout-review-order ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.tp-checkout-place {
    background: var(--tg-border-5);
    padding: 30px;
    overflow: hidden;
}

.tp-checkout-place h3 {
    margin-bottom: 20px;
}

.tp-checkout-place h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.tp-order-info-list ul li:not(:last-child) {
    border-bottom: 1px solid #E0E2E3;
}

.tp-order-info-list li p {
    margin-bottom: 0;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: none;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0 0 15px 0 !important;
}

.woocommerce-info {
    font-size: 14px;
    color: var(--tp-common-black);
    margin-bottom: 0;
    display: inline-block;
    border: 1px dashed #AAB0B2;
    padding: 8px 26px;
    width: 100%;
    background-color: #fff;
}

.woocommerce-info::before {
    display: none;
}

.form-row.place-order {
    padding: 15px 0 !important;
}

.woocommerce-form-coupon-toggle {
    margin-bottom: 40px;
}

.tp-return-customer-input input {
    border: 1px solid #E1E4E7;
    background: var(--tg-color-white-default);
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-body-color);
    padding: 15px 20px;
    height: 50px;
    display: block;
    border-radius: 100px;
    line-height: 1;
    width: 100%;
}

.tp-return-customer-input label {
    margin-bottom: 10px;
}

.tp-return-customer-input {
    margin-bottom: 20px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid #E1E4E7;
    margin-bottom: 40px;
}

label {
    color: var(--tg-body-color);
}

.wishlist-title-container {
    display: none;
}

.yith-wcwl-share {
    display: none;
}

.woocommerce table.wishlist_table {
    border-collapse: inherit;
}

.woocommerce table.wishlist_table {
    border-color: #eaedff !important;
    border-collapse: collapse;
}

.woocommerce table.wishlist_table * {
    border: none !important;
    text-align: center !important;
}

.woocommerce table.wishlist_table {
    background: #ffffff;
    border-color: #eaedff;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 0 !important;
}

.woocommerce .wishlist_table th,
.woocommerce .wishlist_table td {
    border-bottom: 1px solid rgba(6, 7, 40, 0.1) !important;
    border-right: 1px solid rgba(6, 7, 40, 0.1) !important;
}

.woocommerce table.wishlist_table td {
    padding: 20px !important;
    vertical-align: middle;
    font-size: 16px;
}

.woocommerce table.wishlist_table tr th.product-thumbnail {
    width: auto;
}

.woocommerce table.wishlist_table .product-price span {
    font-size: 22px;
}

.woocommerce table.wishlist_table thead .product-price span {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
}

.product-price ins {
    order: -1;
}

table.wishlist_table.shop_table .product-remove {
    width: 100px;
}

.wishlist_table tr td.product-thumbnail a {
    max-width: 85px;
}

.wishlist_table .product-add-to-cart a.add_to_cart_button {
    display: flex !important;
    overflow: hidden !important;
    font-size: 16px !important;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05) !important;
    border-radius: 8px !important;
    padding: 12px 15px 9px !important;
    margin: 0;
}

.woocommerce .wishlist_table .product-add-to-cart a.added_to_cart {
    display: block !important;
    padding: 14px 15px 11px !important;
    font-size: 16px;
}

.wishlist_table .product-stock-status span.wishlist-in-stock {
    color: var(--tg-body-color);
    font-weight: 600;
}

.product-name a:hover {
    color: var(--tg-theme-primary);
}

.woocommerce table.wishlist_table td del,
.woocommerce table.wishlist_table td del span {
    color: #B9BDC8 !important;
}

.elementor .banner__post-thumb img {
    border-radius: 20px;
    height: 255px;
}

.elementor .category__item img {
    border-radius: 54px;
}

.elementor .ad-banner-img img {
    border-radius: 20px;
}

.features-product .add_to_cart_inline {
    border: none !important;
    padding: 0 !important;
}

.features-product .add_to_cart_inline ins,
.features-product .add_to_cart_inline del {
    display: none !important;
}

.modall .description h2.title+.product__reviews-wrap {
    display: none;
}

.modall .description .product__reviews-wrap+p.price {
    display: none;
}

.product__reviews i.color {
    color: var(--tg-color-yellow-default) !important;
}

.product__reviews i.no-color {
    color: #BBC1CF !important;
}

.tp-product-details-review-avater-thumb img {
    border-radius: 50%;
}

.payment__type-wrap button a {
    color: #FFF;
}

.elementor .animal__thumb img {
    max-width: unset;
    height: 100%;
}

.pet-info ul li span {
    text-transform: capitalize;
}

@media(max-width: 767px) {
    .tg-header__area-three .logo img {
        max-height: 40px;
    }
}

.footer__info-wrap .footer__info-content a {
    color: #fff;
}

.footer__newsletter-form-two input.wpcf7-submit {
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--tg-color-white-default);
    background: var(--tg-theme-primary);
    display: flex;
    border-radius: 30px;
    padding: 14px 29px;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.footer__newsletter-form-two input.wpcf7-submit:hover {
    background: var(--tg-theme-secondary);
}

.footer__newsletter input.btn {
    margin-bottom: 0;
    background: var(--tg-theme-primary) none repeat scroll 0 0;
}

.footer__newsletter input.btn:hover {
    background: var(--tg-theme-secondary);
}

.footer__newsletter p {
    margin-bottom: 0;
}

.footer__top-two input.wpcf7-submit::after {
    content: "\f14c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
}

.footer__newsletter-form-two p {
    margin-bottom: 0;
}

@media(min-width: 992px) {
    .sidebar-right+.col-lg-4 .blog-sidebar {
        padding-right: 0;
        padding-left: 40px;
        border-left: 1px solid #E4E4E4;
        border-right: none;
        margin-left: 10px;
        margin-right: 0;
    }
}

.breadcrumb__content .title {
    word-break: break-all;
}

.wp-caption-text,
.gallery-caption,
.bypostauthor,
.sticky {
    color: var(--tg-body-color);
    font-weight: 600 !important;
    font-size: 15px !important;
}

.alignright,
.wp-block-image .alignright {
    float: right;
    margin-left: 25px;
    margin-top: 7px;
}

.alignleft,
.wp-block-image .alignleft {
    float: left;
    margin-right: 20px;
    margin-top: 7px;
}

.wp-caption.aligncenter {
    width: 100% !important;
    text-align: center;
}

.screen-reader-text {
    display: none;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

span.sticky {
    padding: 5px 10px !important;
    font-size: 14px !important;
    border-color: var(--tg-theme-primary);
    background: var(--tg-theme-primary);
    color: #fff !important;
    letter-spacing: 2px !important;
    font-weight: 700;
    float: right;
    position: relative;
    right: 0;
    top: -40px;
    border-radius: 50px;
}

.blog-sidebar h2.wp-block-heading {
    margin-bottom: 20px;
    line-height: 1;
    font-size: 22px;
    text-transform: capitalize;
    position: relative;
    font-weight: 600;
    padding-bottom: 9px;
}

.blog-sidebar h2.wp-block-heading::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: var(--tg-theme-primary);
}

.wp-block-latest-posts__list li,
.wp-block-latest-comments li,
.widget_recent_comments ul li {
    border-bottom: 1px dotted #9999;
    padding: 20px 0 !important;
    margin-bottom: 0 !important;
    font-size: 16px;
    color: var(--tg-body-color);
    line-height: 1.5;
}

.blog-sidebar .wp-block-latest-posts__list li:first-child,
.blog-sidebar .wp-block-latest-comments li:first-child,
.blog-sidebar .widget_recent_comments ul li:first-child {
    padding-top: 0 !important;
}

.blog-sidebar .wp-block-latest-posts__list li:last-child,
.blog-sidebar .wp-block-latest-comments li:last-child,
.widget_meta ul li:last-child,
.widget_recent_comments ul li:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
}

.blog-sidebar .wp-block-latest-posts__list li a,
.blog-sidebar .wp-block-latest-comments li a,
.blog-sidebar .widget_recent_comments ul li a {
    font-weight: 600;
}

.wp-block-latest-posts__list li a:hover,
.wp-block-latest-comments li a:hover,
.widget_recent_comments ul li a:hover {
    color: var(--tg-theme-primary);
}

.blog-widget {
    overflow: hidden;
}

.blog-widget ul,
.blog-widget ol {
    padding-left: 0;
    margin-bottom: 0;
}

.widget_search label {
    display: none;
}

.widget_search form {
    position: relative;
}

.widget_search input {
    background: var(--tg-border-5);
    width: 100%;
    border: 1px solid #E4E4E4;
    padding: 13px 45px 13px 15px;
    color: var(--tg-heading-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 5px;
    height: 45px;
}

.widget_search input:focus {
    outline: none;
}

.widget_search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    font-size: 18px;
    line-height: 0;
}

.wp-block-search__inside-wrapper {
    position: relative;
}

.blog-widget li a {
    color: var(--tg-heading-color);
}

.blog-sidebar ul li {
    list-style: none;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-sidebar ul li:last-child {
    margin-bottom: 0;
}

.blog-sidebar ul li a {
    color: var(--tg-heading-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.blog-sidebar ul li a:hover {
    color: var(--tg-theme-primary);
}

.blog-sidebar .widget_categories ul li a:hover,
.blog-sidebar ul.wp-block-categories li a:hover {
    margin-left: 5px;
}

.widget_archive ul li a,
.widget_categories ul li a {
    float: left;
}

.widget_archive ul li,
.widget_categories ul li {
    text-align: right;
}

select {
    width: 100%;
    padding: 10px;
    border: solid 1px #000;
    color: var(--tg-heading-color);
    margin-bottom: 20px;
    font-size: 15px;
    display: block !important;
    -webkit-appearance: none;
    background: url(../petpal/assets/img/arrow.png) no-repeat right;
    background-position-x: 96%;
    background-color: #fff;
    image-rendering: auto;
    background-size: 15px;
}

select:focus {
    outline: none;
}

.blog-sidebar select {
    margin-bottom: 0;
}

.widget_calendar caption {
    caption-side: top;
    border-bottom: none !important;
    text-transform: uppercase;
    font-weight: 600;
    background-color: black;
    color: #fff !important;
    font-size: 15px !important;
    text-align: center !important;
}

.widget_calendar td#today {
    background: var(--tg-theme-primary) !important;
    color: #fff !important;
    font-weight: 600;
    border: 1px solid var(--tg-theme-primary) !important;
}

.wp-calendar-nav {
    display: none;
}

table {
    border: 1px solid #E0E2E3 !important;
    width: 100%;
    margin-bottom: 20px;
    color: var(--tg-body-color);
}

table a {
    border: none !important;
    padding: 0px !important;
    font-weight: 600;
}

table a:hover {
    color: var(--tg-theme-primary);
}

.widget_calendar table td,
.widget_calendar table th {
    border: 1px solid #E0E2E3 !important;
    padding: 5px !important;
}

.blog-sidebar table {
    text-align: center;
    margin-bottom: 0;
}

.blog-sidebar ul.children,
.blog-sidebar ul.sub-menu {
    padding-left: 17px !important;
    padding-top: 15px !important;
}

.widget_rss ul li {
    padding: 20px 0 20px 0;
    border-bottom: 1px dotted #9999;
    margin-bottom: 0;
}

.widget_rss ul li:first-child {
    padding-top: 0;
}

.widget_rss ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

a.rsswidget {
    line-height: 1.6 !important;
    font-weight: 600 !important;
}

span.rss-date {
    font-size: 15px;
    clear: both;
    padding: 10px 0;
    display: block;
    color: var(--tg-body-color);
}

div.rssSummary {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.widget_rss cite {
    font-size: 15px;
    color: var(--tg-body-color);
    font-weight: 600;
}

.blog-sidebar ul li.recentcomments a {
    display: inline-block;
}

.widget_text .textwidget img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.widget_text .textwidget strong {
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--tg-body-color);
}

.widget_text .textwidget .wp-caption-text {
    text-align: center;
    font-weight: 600;
    font-size: 14px !important;
    margin-bottom: 15px;
    margin-top: -15px;
}

.widget_text br {
    display: none;
}

.blog-sidebar .widget_tag_cloud ul li {
    margin-bottom: 0;
}

.pagination span.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 50px;
    background: var(--tg-color-white-default);
    border-radius: 8px;
    font-size: 20px;
    font-weight: var(--tg-fw-semi-bold);
    border: 1px solid #DDD;
    line-height: 1;
    color: var(--tg-theme-primary);
}

#cancel-comment-reply-link {
    background: #F4EBF4;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--tg-theme-primary);
    float: right;
    padding: 15px 15px 10px;
}

#cancel-comment-reply-link:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
}

.wp-block-image img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 10px;
}

.wp-block-image figcaption {
    text-align: center;
    font-weight: 600;
    color: var(--tg-body-color);
    font-size: 15px;
    margin-top: 3px;
}

.blog__details-content {
    overflow: hidden;
}

.blog__details-area .comment-respond,
.blog-wrapper .comment-respond {
    margin-top: 50px;
}

a.wp-block-button__link {
    color: white !important;
    font-size: 16px;
    border-radius: 5px;
    background-color: var(--tg-body-color);
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    color: var(--tg-body-color) !important;
}

.wp-block-button {
    margin-bottom: 22px !important;
}

.wp-block-archives__label {
    margin-bottom: 10px;
}

p.wp-block-cover-text {
    font-size: 16px !important;
}

p.wp-block-cover-text,
p.wp-block-cover-text a,
p.wp-block-cover-text strong {
    color: white !important;
}

.wp-block-cover {
    margin-bottom: 20px !important;
}

li.blocks-gallery-item img {
    flex: unset !important;
    margin: 0;
    margin-bottom: 0 !important;
}

.blocks-gallery-caption {
    text-align: center;
    font-size: 15px !important;
    font-weight: 600;
    color: var(--tg-body-color);
}

.blocks-gallery-grid+figcaption {
    margin-bottom: 15px;
}

.wp-block-gallery img {
    height: auto !important;
}

.wp-block-gallery.alignleft.columns-2 .blocks-gallery-item img {
    height: 100% !important;
}

.wp-block-gallery.alignleft.columns-2 {
    margin-top: 8px !important;
}

@media (min-width: 600px) {

    .wp-block-gallery.columns-3.alignfull .blocks-gallery-image,
    .wp-block-gallery.columns-3.alignfull .blocks-gallery-item {
        width: calc((100% - 46px)/3) !important;
        margin-right: 15px !important;
    }

    .wp-block-gallery.columns-4 li.blocks-gallery-item {
        width: calc(24% - 0.75em) !important;
        margin-right: 1em !important;
    }

    .blocks-gallery-grid.columns-5 .blocks-gallery-image,
    .blocks-gallery-grid.columns-5 .blocks-gallery-item,
    .wp-block-gallery.columns-5 .blocks-gallery-image,
    .wp-block-gallery.columns-5 .blocks-gallery-item {
        width: calc(19% - 0.8em) !important;
        margin-right: 1em !important;
    }

    .blocks-gallery-grid.columns-6 .blocks-gallery-image,
    .blocks-gallery-grid.columns-6 .blocks-gallery-item,
    .wp-block-gallery.columns-6 .blocks-gallery-image,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        width: calc(16% - 0.83333em) !important;
        margin-right: 1em !important;
    }

    .blocks-gallery-grid.columns-7 .blocks-gallery-image,
    .blocks-gallery-grid.columns-7 .blocks-gallery-item,
    .wp-block-gallery.columns-7 .blocks-gallery-image,
    .wp-block-gallery.columns-7 .blocks-gallery-item {
        width: calc(13.28571% - 0.85714em) !important;
        margin-right: 1em !important;
    }

    .blocks-gallery-grid.columns-8 .blocks-gallery-image,
    .blocks-gallery-grid.columns-8 .blocks-gallery-item,
    .wp-block-gallery.columns-8 .blocks-gallery-image,
    .wp-block-gallery.columns-8 .blocks-gallery-item {
        width: calc(12% - 0.875em) !important;
        margin-right: 1em !important;
    }
}

.wp-block-gallery.columns-3.alignfull .blocks-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    flex: 1;
    object-fit: cover;
}

@media (min-width: 600px) {

    .wp-block-gallery.columns-3.alignfull .blocks-gallery-image img,
    .wp-block-gallery.columns-3.alignfull .blocks-gallery-item img {
        height: 100% !important;
    }

    .wp-block-gallery.columns-7.is-cropped li img {
        height: 100% !important;
    }

    .wp-block-gallery.columns-8.is-cropped li img {
        height: 100% !important;
    }
}

.wp-block-gallery.alignfull.columns-3 {
    display: flex !important;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
}

@media only screen and (min-width: 768px) {
    .wp-block-gallery.alignleft.columns-2 {
        max-width: 60%;
        margin-right: 15px;
    }
}

.wp-block-gallery.alignleft.columns-2 .blocks-gallery-item {
    width: calc((100% - 32px)/2) !important;
    margin-right: 15px !important;
}

.wp-block-gallery.alignleft.columns-2 .blocks-gallery-item img {
    height: 100% !important;
    flex: 1;
    object-fit: cover !important;
    width: 100% !important;
}

.wp-block-gallery.columns-4 {
    clear: both;
    margin-top: 20px;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    display: block !important;
    letter-spacing: 0px;
    font-size: 15px !important;
    padding-top: 1em !important;
}

.wp-block-gallery.columns-4.is-cropped.alignwide.featured li img {
    height: 100% !important;
    margin-bottom: 0;
}

.widget .wp-block-search__button-outside {
    margin-bottom: 0;
}

.wp-block-search__button-outside.wp-block-search__text-button {
    margin-bottom: 20px;
}

.blog-sidebar .wp-block-search__button-outside.wp-block-search__text-button {
    margin-bottom: 0;
}

.wp-block-column ol li {
    font-size: 16px;
}

.wp-block-file a {
    font-size: 14px;
}

blockquote.wp-block-quote,
.wp-block-pullquote blockquote {
    margin: 0;
    margin-bottom: 20px;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
    padding: 50px 100px 50px 50px;
}

iframe {
    width: 100%;
}

.has-text-color strong {
    color: var(--tg-body-color);
}

code,
kbd,
pre,
samp {
    font-family: monospace !important;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: #e83e8c !important;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}

pre cite {
    margin-left: 15px;
}

cite {
    font-weight: 600;
}

cite br {
    display: none;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.wp-block-pullquote p {
    color: var(--tg-theme-primary);
}

.wp-block-pullquote cite {
    color: var(--tg-body-color);
}

.has-text-align-center+.has-small-font-size {
    margin-top: 30px;
}

.wp-block-file__button:hover,
.wp-block-file__button:focus {
    color: #fff;
}

.wp-block-embed figcaption {
    font-weight: 600;
    text-align: center;
    color: #4d5051;
    font-size: 15px;
}

.wp-block-calendar caption {
    caption-side: top;
    border-bottom: none !important;
    text-transform: uppercase;
    font-weight: 700;
    background-color: black;
    color: #fff !important;
    font-size: 15px !important;
    text-align: center !important;
}

.gallery-size-thumbnail img {
    margin-bottom: 10px;
}

#today {
    color: #fff !important;
    background-color: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
}

.wp-block-group.has-background .wp-block-group__inner-container {
    padding: 20px;
    margin-bottom: 20px;
}

.wp-block-media-text img {
    margin-bottom: 0 !important;
}

.wp-block-media-text.has-media-on-the-right {
    margin-bottom: 15px;
}

.pagination.page {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 10px;
    padding-top: 40px;
    margin-bottom: 20px;
    clear: both;
}

.pagination.page a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 50px;
    background: var(--tg-color-white-default);
    border-radius: 8px;
    font-size: 20px;
    color: var(--tg-theme-primary);
    font-weight: var(--tg-fw-semi-bold);
    border: 1px solid #DDD;
    line-height: 1;
}

.pagination.page a:hover {
    background: var(--tg-theme-secondary);
    border-color: var(--tg-theme-secondary);
    color: #fff;
}

.wp-block-archives-list a {
    color: var(--tg-body-color);
}

.wp-block-archives-list a:hover {
    color: var(--tg-theme-primary);
}

.blog__details-content select {
    width: auto;
}

.wp-block-latest-comments__comment-excerpt p {
    margin-bottom: 0;
}

.wp-block-latest-comments__comment-date {
    margin-top: 5px;
    font-weight: 600;
}

.wp-block-latest-posts__post-date {
    padding-top: 5px;
}

.wp-block-latest-comments__comment-meta a {
    color: var(--tg-body-color);
    font-weight: 600;
}

.wp-block-latest-posts__list li a {
    color: var(--tg-body-color);
    font-weight: 600;
}

.blog__details-content ol.wp-block-latest-comments.has-avatars {
    padding-left: 0;
}

/* .blog__details-content ul li {
    list-style-type: disc;
} */

.blog__details-content ul ul li {
    list-style-type: circle;
}

.blog__details-content ul ul ul li {
    list-style-type: square;
}

.blog__details-content ol li {
    list-style: decimal;
    margin-bottom: 0;
}

.wp-block-search__inside-wrapper button {
    background-color: var(--tg-theme-primary);
    color: #fff;
    border-color: var(--tg-theme-primary);
}

.wp-block-search__inside-wrapper button:hover {
    background-color: var(--tg-theme-secondary);
    border-color: var(--tg-theme-secondary);
}

.wp-block-rss li a {
    color: var(--tg-body-color);
}

.blog__details-content table td,
.blog__details-content table th,
.comments-box table th,
.comments-box table td {
    border: 1px solid #E0E2E3 !important;
}

dt,
dd {
    font-size: 16px;
}

dt+dd {
    margin-left: 20px;
}

.blog__details-content table td,
.blog__details-content table th,
.comments-box table th,
.comments-box table td {
    padding: 10px !important;
}

.blog__details-content table a,
.comments-box table a {
    color: var(--tg-body-color);
}

.blog__details-content table a:hover,
.comments-box table a:hover {
    color: var(--tg-theme-primary);
}

.wp-caption img {
    margin-bottom: 10px;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
    text-align: center;
}

.blog__details-thumb {
    text-align: center;
}

.blog__details-content span.sticky {
    top: -49px;
}

.post-password-form>p>input {
    background: var(--tg-theme-primary) !important;
    color: #fff !important;
    border: 1px solid var(--tg-theme-primary) !important;
    padding: 10px 20px;
    border-radius: 0 !important;
    margin-left: -5px;
    font-size: 16px;
    width: auto;
    display: inline-block;
    line-height: 35px;
}

.post-password-form>p>label input {
    padding: 10px 20px;
    border: 1px solid #dbdbdb;
    font-size: 16px;
    line-height: 35px;
    margin-top: 10px;
}

.post-password-form>p>input:hover {
    background-color: var(--tg-theme-secondary) !important;
    color: #fff !important;
    border-color: var(--tg-theme-secondary) !important;
}

.blog_content {
    overflow: hidden;
}

body.logged-in .sticky-menu {
    top: 32px;
}

@media(min-width: 600px) and (max-width: 784px) {
    body.logged-in .sticky-menu {
        top: 45px;
    }
}

@media(max-width: 600px) {
    body.logged-in .sticky-menu {
        top: 0;
    }

    body.logged-in .tgmobile__menu {
        top: 0;
    }
}

body.logged-in .tgmobile__menu {
    top: 32px;
}

.tgmenu__navbar-wrap>ul>li .sub-menu li:hover .sub-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 19px 0;
}

.tgmenu__main-menu li.menu-item-has-children ul li.menu-item-has-children>a::after {
    position: relative;
    top: 5px;
}

.copyright-text p {
    color: #C6CEE0;
}

.blog-avatar-wrap {
    margin-bottom: 0;
}

.comments-wrap {
    margin-top: 40px;
}

.comments-wrap-title {
    font-size: 30px;
    font-weight: 600;
}

ul.list-wrap li {
    list-style: none !important;
}

.select-grp select {
    margin-bottom: 0;
}

body.logged-in .offCanvas__info {
    top: 30px;
}

footer div.wpcf7-response-output {
    color: #fff !important;
    border-color: #fff !important;
}

.footer__bottom-menu-two .list-wrap li a {
    color: #fff;
}

.tgmenu__search-form .select-grp select {
    padding: 2px 30px 2px 5px;
    background-color: transparent;
}

.banner__search-form select,
.banner__search-form-two select,
.registration__form-wrap select,
.registration__area select {
    background: none;
}

.footer__newsletter-three span.wpcf7-not-valid-tip,
footer span.wpcf7-not-valid-tip {
    color: #fff !important;
    margin-bottom: 0;
}

.footer__newsletter-three div.wpcf7-response-output {
    width: 78%;
    margin: 15px 0 0 auto !important;
    color: #fff !important;
    border-color: #fff !important;
}

#elementor-preview body.logged-in .sticky-menu {
    top: 0;
}

.sub-title strong img {
    position: relative;
    top: -3px;
}

.coupon-error-notice {
    margin-top: 10px;
}

.product__details-area .woocommerce-notices-wrapper .container {
    padding: 0;
}

.yith-wcwl-form .woocommerce-message {
    margin-bottom: 60px;
    margin-top: 0;
}

.product__details-area .woocommerce-message {
    margin-bottom: 60px;
    margin-top: 0;
}

.cart-plus {
    position: relative;
    width: 149px;
    flex: 0 0 auto;
}

.cart-plus .qtybutton.dec {
    font-size: 26px;
}

.cart-plus .qtybutton {
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #626571;
    background: #F3F3F3;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.cart-plus .qtybutton span {
    line-height: 1;
    transform: translateY(-3px);
}

.cart-plus .qtybutton.inc {
    left: auto;
    right: 6px;
}

p.stock {
    display: none;
}

.woocommerce td.product-quantity.tp-cart-quantity {
    max-width: 143px;
}

.cart-area .row.mt-60,
.cart-area .row.mt-60 .pd-0 {
    padding: 0;
}

.widget_pet_location_filter_widget {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.animal__sidebar form .sidebar-search-form button {
    position: relative;
    right: 15px;
    top: -20px;
    float: right;
}

.banner__search-wrap.d-flex {
    align-items: center;
    gap: 10px;
}

.blog__details-inner-wrap div+p {
    margin-bottom: 0;
}

.elementor .section__title-two .title img {
    position: absolute;
    right: 0;
    top: -8px;
}

.product__thumb .yith-add-to-wishlist-button-block {
    margin: 0;
}

.contact__form .form-grp span {
    margin-bottom: 0;
}

.blog-sidebar .wp-block-search__inside-wrapper button {
    color: var(--tg-theme-primary);
}

.comments-text {
    width: 100%;
    overflow: hidden;
}

.comments-text blockquote p {
    margin-bottom: 0;
}

.comments-box ul li {
    list-style-type: disc !important;
}

.comments-box ul ul li {
    list-style-type: circle !important;
}

.comments-box ul ul ul li {
    list-style-type: square !important;
}

.comments-box ol li {
    list-style: decimal !important;
    margin-bottom: 0;
}

.comments-box h2+ul,
.comments-box h2+ol {
    margin-bottom: 1rem;
}

h6+h2 {
    margin-top: 15px;
}

.comments-box p>img {
    margin: 15px 0;
}

.blog-wrapper .content .alignright+p+p+p {
    margin-top: 20px;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 50px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 10px;
    margin: 0;
    padding: 0;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    list-style: none;
    border-right: none;
}

.woocommerce nav.woocommerce-pagination ul li a {
    color: var(--tg-body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 50px;
    background: var(--tg-color-white-default);
    border-radius: 8px;
    font-size: 20px;
    font-weight: var(--tg-fw-semi-bold);
    border: 1px solid #DDD;
    line-height: 1;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    color: var(--tg-color-white-default);
    background: var(--tg-theme-secondary);
    border-color: var(--tg-theme-secondary);
}

.woocommerce nav.woocommerce-pagination ul li svg {
    color: var(--tg-theme-primary);
}

.woocommerce nav.woocommerce-pagination ul li a:hover svg {
    color: var(--tg-color-white-default);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    color: var(--tg-color-white-default);
    background: var(--tg-theme-secondary);
    border-color: var(--tg-theme-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: var(--tg-fw-semi-bold);
    border: 1px solid #DDD;
    line-height: 1;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.elementor .testimonial__img-mask img {
    max-width: unset;
    height: 100%;
}

.elementor .banner__img-two img {
    max-width: 700px;
}

.elementor .why__we-are-area-two .row .col-lg-4:first-child .why__we-are-item-icon img {
    height: 100px;
}

.banner__content-three>.title img {
    margin-right: -10px;
}

.elementor .discover__item-img img {
    height: 300px;
}

.product__reviews {
    margin-bottom: 7px;
}

.woocommerce-cart .elementor-shortcode .woocommerce {
    margin: 100px auto;
}

.woocommerce-notices-wrapper {
    max-width: 1290px;
    margin: 0 auto;
}

.wc-empty-cart-message {
    margin-bottom: 40px;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
}

.return-to-shop {
    text-align: center;
}

.related__animal-area {
    margin-top: 10px;
    margin-bottom: 70px;
}

.footer__newsletter span.wpcf7-not-valid-tip {
    margin-bottom: 15px !important;
}

.contact__area .contact__form-wrap div.wpcf7-response-output {
    margin-top: 30px !important;
}

.blog__post-meta .list-wrap li a {
    margin-left: -4px;
}

.footer__newsletter-form-two button {
    right: -2px;
}

.product__size-wrap .list-wrap li button {
    cursor: text;
}

.cart-area button.btn:disabled,
.cart-area .woocommerce-cart-form .text-md-end button.btn {
    border: 1px solid var(--tg-theme-primary);
    padding-bottom: 15px;
    opacity: 1;
    padding-top: 19px;
    background: var(--tg-theme-primary);
    color: #fff;
}

.cart-area .woocommerce-cart-form .text-md-end button.btn:hover {
    border-color: var(--tg-theme-secondary);
}

.team__details-content div.wpcf7-response-output {
    margin-top: 30px !important;
}

.tp-checkout-bill-area input.input-text::placeholder {
    font-size: 14px;
}

@media(min-width:1200px) {
    .product__item .product__thumb img {
        height: 260px;
    }
}

.cart-area button.btn:disabled:hover {
    border-color: var(--tg-theme-secondary) !important;
    opacity: 1;
}

.comment-reply-title {
    margin-bottom: 30px;
}

@media(min-width: 991px) and (max-width: 1200px) {
    .tgmenu__navbar-wrap>ul>li .sub-menu {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .comments-wrap .latest-comments .children {
        margin-left: 20px;
    }
}

/* ========================================
   Blog Post Meta - New Layout
========================================== */
.blog__post-meta-new {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar,
.reviewer-avatar,
.contributor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img,
.reviewer-avatar img,
.contributor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info,
.reviewer-info,
.contributor-info,
.updated-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.meta-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.meta-value a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value a:hover {
    color: var(--tg-theme-primary, #ff6b6b);
}

.updated-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.updated-icon i {
    font-size: 20px;
    color: var(--tg-theme-primary, #ff6b6b);
}

@media (max-width: 767px) {
    .blog__post-meta-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .meta-item {
        width: 100%;
    }
}

/* ========================================
   Contributor Thanks Section
========================================== */
.blog__contributor-thanks {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.blog__contributor-thanks .meta-item {
    gap: 15px;
}

.blog__contributor-thanks .contributor-avatar {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.blog__contributor-thanks .meta-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.blog__contributor-thanks .contributor-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.contributor-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .blog__contributor-thanks {
        padding: 18px 20px;
    }
    
    .blog__contributor-thanks .contributor-avatar {
        width: 50px;
        height: 50px;
    }
    
    .blog__contributor-thanks .contributor-name {
        font-size: 16px;
    }
}

/* ========================================
   Blog Content Images - Center Alignment
========================================== */
.blog__details-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

.blog__details-content p img {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog__details-content figure {
    text-align: center;
    margin: 30px 0;
}

.blog__details-content figure img {
    margin-left: auto;
    margin-right: auto;
}

.blog__details-content .wp-block-image {
    text-align: center;
}

.blog__details-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Affiliate Disclaimer
========================================== */
.affiliate-disclaimer {
    background: #f8f9fa;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.affiliate-disclaimer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.affiliate-disclaimer .learn-more-link {
    color: var(--tg-theme-primary, #ff6b6b);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.affiliate-disclaimer .learn-more-link:hover {
    color: #e55555;
    gap: 8px;
}

.affiliate-disclaimer .learn-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.affiliate-disclaimer .learn-more-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .affiliate-disclaimer {
        padding: 15px 20px;
        margin: 20px 0;
    }
    
    .affiliate-disclaimer p {
        font-size: 14px;
    }
}

/* ========================================
   Related Posts Section - You might also like
========================================== */
.related-posts-wrapper {
    padding: 50px 0;
    background: #ffffff;
}

.related-posts-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--tg-theme-primary, #ff6b6b);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.related-post-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.related-post-thumb {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* background: #f8f8f8; */
}

/* .related-post-item:hover .related-post-thumb img {
    transform: scale(1.1);
} */

.related-post-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

.related-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--tg-theme-primary, #ff6b6b);
}

.related-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.related-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-meta i {
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .related-posts-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .related-posts-wrapper {
        padding: 30px 0;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-posts-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .related-post-thumb {
        height: 180px;
    }
}

/* ========================================
   Author Bio Section
========================================== */
.author-bio-section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
    margin: 50px 0 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-bio-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 1.3;
}

.author-bio-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-bio-avatar {
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.author-bio-info {
    flex: 1;
}

.author-bio-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.author-bio-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.author-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #8b2e8f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-bio-link:hover {
    color: #6b1e6f;
    gap: 12px;
}

.author-bio-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.author-bio-link:hover i {
    transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 767px) {
    .author-bio-section {
        padding: 25px 20px;
        margin: 30px 0 25px;
    }
    
    .author-bio-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .author-bio-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    
    .author-bio-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .author-bio-name {
        font-size: 18px;
    }
    
    .author-bio-description {
        font-size: 14px;
    }
}

/* ========================================
   Product Categories Section
========================================== */
.categories__area {
    background: #f8f9fa;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.category__item {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 增加列之间的垂直间距 */
.categories__area .row > [class*="col-"] {
    margin-bottom: 40px !important;
}

.categories__area .row {
    margin-bottom: -40px;
}

.category__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category__item:hover .category__icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #8E24AA 0%, #AB47BC 100%);
}

.category__icon i {
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
    display: inline-block;
}

.category__content {
    flex: 1;
}

.category__content .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.category__content .title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category__content .title a:hover {
    color: #9C27B0;
}

.category__content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .category__item {
        padding: 30px 20px;
    }
    
    .category__icon {
        width: 70px;
        height: 70px;
    }
    
    .category__icon i {
        font-size: 32px;
    }
    
    .category__content .title {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .category__item {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .category__icon {
        width: 60px;
        height: 60px;
    }
    
    .category__icon i {
        font-size: 28px;
    }
    
    .category__content .title {
        font-size: 16px;
    }
    
    .category__content p {
        font-size: 13px;
    }
}

/* ========================================
   Reviews Section - Category Reviews
========================================== */
.reviews__area {
    background: #ffffff;
    padding-top: 100px !important;
    padding-bottom: 80px !important;
}

.category-reviews-section {
    margin-bottom: 80px;
}

.category-reviews-section:last-child {
    margin-bottom: 0;
}

.category-reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.category-reviews-header .category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-reviews-header .category-icon i {
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
    display: inline-block;
}

.category-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.view-all-link {
    font-size: 14px;
    color: #9C27B0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-link:hover {
    color: #8E24AA;
    transform: translateX(5px);
}

.view-all-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* Review Card Styles */
.review__card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.review__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review__card-thumb {
    position: relative;
    overflow: hidden;
    height: 360px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review__card-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.review__card:hover .review__card-thumb img {
    transform: scale(1.05);
}

.review__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #9c27b0 0%, #d2c7e9 100%);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review__card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.review__meta span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review__meta i {
    color: #ff6b6b;
    font-size: 12px;
}

.review__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.review__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review__title a:hover {
    color: #9C27B0;
}

.review__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.review__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9C27B0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.review__read-more:hover {
    color: #8E24AA;
    gap: 12px;
}

.review__read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.review__read-more:hover i {
    transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 991px) {
    .category-title {
        font-size: 24px;
    }
    
    .category-reviews-header .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-reviews-header .category-icon i {
        font-size: 24px;
    }
    
    .review__card-thumb {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .category-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .category-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .view-all-link {
        font-size: 13px;
    }
    
    .review__card-thumb {
        height: 180px;
    }
    
    .review__card-content {
        padding: 20px;
    }
    
    .review__title {
        font-size: 16px;
    }
    
    .review__excerpt {
        font-size: 13px;
    }
    
    .category-reviews-section {
        margin-bottom: 40px;
    }
}

/* ========================================
   Product Review Template Styles
========================================== */

/* Review Rating Box */
.review-rating-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 2px solid #9C27B0;
    border-radius: 12px;
    padding: 0;
    margin: 30px 0;
    overflow: hidden;
}

.rating-box-header {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
    padding: 20px 30px;
}

.rating-box-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.rating-box-content {
    padding: 30px;
}

.rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 20px;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #9C27B0;
    margin-left: 10px;
}

.rating-value {
    font-size: 16px;
    font-weight: 600;
    color: #9C27B0;
}

.rating-value.price {
    font-size: 24px;
    font-weight: 700;
}

.rating-box-footer {
    padding: 20px 30px;
    background: #ffffff;
    text-align: center;
}

.affiliate-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: #f9f9f9;
    border-left: 4px solid #ff6b6b;
    padding: 15px 20px;
    margin: 30px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.affiliate-disclosure strong {
    color: #333;
}

/* Bottom Affiliate Box */
.bottom-affiliate-box {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    color: #ffffff;
}

.bottom-affiliate-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.bottom-affiliate-box p {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.bottom-affiliate-box .btn {
    background: #ffffff;
    color: #9C27B0;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
}

.bottom-affiliate-box .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Blog Details Tags */
.blog__details-tags {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.blog__details-tags h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.blog__details-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog__details-tags ul li a {
    display: inline-block;
    padding: 6px 15px;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog__details-tags ul li a:hover {
    background: #9C27B0;
    color: #ffffff;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .rating-box-header {
        padding: 15px 20px;
    }
    
    .rating-box-header h3 {
        font-size: 20px;
    }
    
    .rating-box-content {
        padding: 20px;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }
    
    .rating-label {
        font-size: 14px;
    }
    
    .rating-value {
        font-size: 14px;
    }
    
    .rating-value.price {
        font-size: 20px;
    }
    
    .rating-stars i {
        font-size: 18px;
    }
    
    .rating-number {
        font-size: 16px;
    }
    
    .rating-box-footer {
        padding: 15px 20px;
    }
    
    .affiliate-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .bottom-affiliate-box {
        padding: 30px 20px;
    }
    
    .bottom-affiliate-box h3 {
        font-size: 22px;
    }
    
    .bottom-affiliate-box p {
        font-size: 14px;
    }
    
    .bottom-affiliate-box .btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

/* ========================================
   Why Trust Us Section
========================================== */
.trust__area {
    background: #ffffff;
}

.trust__subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

.trust__content {
    padding-right: 30px;
}

.trust__icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.trust__icon-box i {
    font-size: 36px;
    color: #ffffff;
}

.trust__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.trust__text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.trust__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust__list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust__list li i {
    color: #9C27B0;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust__image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust__cta {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-radius: 12px;
    padding: 50px 40px;
}

.trust__cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.trust__cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.trust__cta .btn {
    padding: 15px 40px;
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .trust__content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .trust__title {
        font-size: 24px;
    }
    
    .trust__text {
        font-size: 15px;
    }
    
    .trust__icon-box {
        width: 70px;
        height: 70px;
    }
    
    .trust__icon-box i {
        font-size: 32px;
    }
    
    .trust__cta-title {
        font-size: 28px;
    }
    
    .trust__cta-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .trust__subtitle {
        font-size: 16px;
    }
    
    .trust__title {
        font-size: 22px;
    }
    
    .trust__text {
        font-size: 14px;
    }
    
    .trust__list li {
        font-size: 14px;
    }
    
    .trust__icon-box {
        width: 60px;
        height: 60px;
    }
    
    .trust__icon-box i {
        font-size: 28px;
    }
    
    .trust__cta {
        padding: 40px 30px;
    }
    
    .trust__cta-title {
        font-size: 24px;
    }
    
    .trust__cta-text {
        font-size: 15px;
    }
    
    .trust__cta .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

