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

.tv-product-list {
    margin-top: 8px;
    text-align: center;
}
.tvproduct-wrapper.list .tv-product-list {
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
}
/** Popovers */

.tvtooltip.popover {
    border: none;
    padding: 0;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
    border-radius: 4px;
}

.tvtooltip .popover-title {
    background-color: transparent;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: normal;
    border: none;
}

.tvtooltip .popover-content {
    font-size: .750rem;
    padding: 0;
}

.tvtooltip.popover.bs-tether-element-attached-bottom:before,
.tvtooltip.popover.popover-top:before {
    display: none;
}

/** Add popover caret for 1.6 (bootstrap 3) */

.tvtooltip.popover.top:after {
    content: "";
    border-width: 10px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    bottom: -10px;
    margin-left: -10px;
    border-top-color: #fff;
}

.tvtooltip.popover.top:after {
    left: 50%;
    border-bottom-width: 0;
}

/** 1.7 Classic Theme Mods */
/*
#products .product-description,
.featured-products .product-description,
.product-accessories .product-description,
.product-miniature .product-description {
    height: 130px;
}*/

#products .thumbnail-container:focus .highlighted-informations,
#products .thumbnail-container:hover .highlighted-informations,
.featured-products .thumbnail-container:focus .highlighted-informations,
.featured-products .thumbnail-container:hover .highlighted-informations,
.product-accessories .thumbnail-container:focus .highlighted-informations,
.product-accessories .thumbnail-container:hover .highlighted-informations,
.product-miniature .thumbnail-container:focus .highlighted-informations,
.product-miniature .thumbnail-container:hover .highlighted-informations {
    bottom: 9.250rem;
}
@media (max-width: 575px) {
    .tvproduct-wrapper.list .tv-product-list {
        text-align: center;
    }
}

/************************************/

.tvfastshipping-light-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff;
    color: #28a745;
    border-radius: 6px;
    border: 1.5px solid #28a745;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Hover Efekti */
.tvfastshipping-light-wrapper:hover {
    background: #f0f9f6;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
    transform: translateY(-2px);
}

/* Kamyon Ikonu */
.tvfastshipping-light-icon {
    font-size: 22px;
    color: #28a745;
    animation: tvfastshipping-light-truck-move 1.8s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
}

@keyframes tvfastshipping-light-truck-move {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Hover'da Ikon Rengi */
.tvfastshipping-light-wrapper:hover .tvfastshipping-light-icon {
    animation: tvfastshipping-light-truck-move-fast 1s ease-in-out infinite;
    color: #20c997;
}

@keyframes tvfastshipping-light-truck-move-fast {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(14px);
    }
}

/* Içerik Container */
.tvfastshipping-light-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-sizing: border-box;
}

/* Ana Metin */
.tvfastshipping-light-main {
    font-size: 13px;
    font-weight: 700;
    color: #28a745;
    display: block;
    line-height: 1.2;
}

/* Seçenekler Metni */
.tvfastshipping-light-options {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    display: block;
    line-height: 1.2;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .tvfastshipping-light-wrapper {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .tvfastshipping-light-icon {
        font-size: 20px;
    }
    
    .tvfastshipping-light-main {
        font-size: 12px;
    }
    
    .tvfastshipping-light-options {
        font-size: 10px;
    }
}

/* Responsive - Mobil */
@media (max-width: 480px) {
    .tvfastshipping-light-wrapper {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .tvfastshipping-light-icon {
        font-size: 18px;
    }
    
    .tvfastshipping-light-main {
        font-size: 11px;
    }
    
    .tvfastshipping-light-options {
        font-size: 9px;
    }
}