/**
 * BOGO Frontend Styles
 *
 * @package StoreBoosterPro
 * @since 1.0.0
 */

/* BOGO Notice */
.ttsb-bogo-notice-wrapper {
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    z-index: 10;
}

/* BOGO Notice in Fly Cart */
.ttsb-fly-cart-sidebar .ttsb-bogo-notice-wrapper {
    margin: 10px 0 0;
    padding: 0 20px;
}
.ttsb-fly-cart-sidebar .ttsb-quick-checkout-form .ttsb-bogo-notice-wrapper{
    padding: 0;
    margin-bottom: 10px;
}
.ttsb-bogo-notice {
    padding: 12px 40px 12px 20px;
    background-color: #f7f6f7;
    color: #515151;
    border-left: 4px solid #1e85be;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ttsb-bogo-notice p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.ttsb-bogo-notice .notice-dismiss {
    position: absolute;
    top: 0;
    right: 1px;
    border: none;
    margin: 0;
    padding: 9px;
    background: none;
    color: #787c82;
    cursor: pointer;
}

.ttsb-bogo-notice .notice-dismiss:hover {
    color: #000;
}

.ttsb-bogo-notice .notice-dismiss:before {
    content: "\f153";
    display: block;
    font: normal 16px/20px dashicons;
    width: 20px;
    height: 20px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ttsb-bogo-notice .ttsb-bogo-view-offers {
    margin-left: 10px;
    font-weight: 600;
    text-decoration: underline;
}

/* Popup Overlay */
.ttsb-bogo-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    overflow-y: auto;
}

.ttsb-bogo-popup-content {
    position: relative;
    background: #fff;
    margin: 50px auto;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ttsb-bogo-popup-header {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ttsb-bogo-popup-header h2 {
    margin: 0;
    font-size: 20px;
}

.ttsb-bogo-popup-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttsb-bogo-popup-close:hover {
    color: #000;
}

.ttsb-bogo-popup-body {
    padding: 20px;
}

/* Products Grid */
.ttsb-bogo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ttsb-bogo-product-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.ttsb-bogo-product-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ttsb-bogo-product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #ffffff;
}

.ttsb-bogo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ttsb-bogo-product-info {
    padding: 15px;
    text-align: center;
}
.ttsb-bogo-product-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
.ttsb-bogo-product-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
.ttsb-bogo-product-title a:hover {
    color: #2271b1;
}
.ttsb-bogo-product-price {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ttsb-bogo-price-free {
    color: #46b450;
    font-weight: 600;
    font-size: 16px;
}
.ttsb-bogo-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
.ttsb-bogo-price-discounted {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}
.ttsb-bogo-discount-badge {
    background: #dc3232;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}
.ttsb-bogo-product-info .ttsb-bogo-product-form{
    margin: 0;
}
.ttsb-bogo-add-to-cart-btn {
    padding: 5px 15px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.ttsb-bogo-add-to-cart-btn:hover {
    background: #135e96;
    color: #fff;
}

.ttsb-bogo-add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ttsb-bogo-add-to-cart-btn.added {
    background: #46b450;
}

/* Messages */
.ttsb-bogo-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000000;
    display: none;
}

.ttsb-bogo-message-success {
    background: #46b450;
    color: #fff;
}

.ttsb-bogo-message-error {
    background: #dc3232;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .ttsb-bogo-popup-content {
        width: 95%;
        margin: 20px auto;
    }

    .ttsb-bogo-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .ttsb-bogo-product-image {
        height: 150px;
    }
}

/* single product notice */
.ttsb-bogo-product-offer-message{
    border: 1px solid #dedede;
    margin: 20px 0;
    border-radius: 10px;
    padding: 20px;
}
.ttsb-bogo-product-offer-text{
    margin: 0;
}
.ttsb-bogo-product-offer-text a.ttsb-bogo-offer-category-link{
    background-color: #fff7af;
    color: #000000;
    font-size: 87%;
    padding: 1px 5px;
    border-radius: 2px;
    line-height: 1;
    text-decoration: none;
}
.ttsb-bogo-product-offer-text .woocommerce-Price-amount{
    color: #ff4949;
    font-weight: 600;
}
.ttsb-bogo-product-offer-message .ttsb-sale-countdown{
    margin: 0;
    border: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 0;
    padding: 0;
}
.ttsb-bogo-product-offer-message .ttsb-sale-countdown:hover{
    box-shadow: none;
    transform: none;
    background-color: transparent
}
.ttsb-bogo-product-offer-message .ttsb-countdown-title {
    margin: 0;
}
.ttsb-bogo-product-offer-message .ttsb-countdown-timer .ttsb-countdown-separator{
    font-size: 14px;
    margin: 0;
}
.ttsb-bogo-product-offer-message .ttsb-countdown-timer .ttsb-countdown-item span.ttsb-countdown-number {
    font-size: 18px;
    margin-bottom: 0;
    color: #ff4949;
}
.ttsb-bogo-product-offer-message .ttsb-countdown-timer .ttsb-countdown-item span.ttsb-countdown-label {
    display: none;
}

/* Fix quick checkout styles */
.ttsb-quick-checkout-form .ttsb-bogo-product-offer-text{
    font-size: 14px;
}
.ttsb-quick-checkout-form .ttsb-countdown-title{
    font-size: 13px;
}
.ttsb-quick-checkout-form .ttsb-bogo-product-offer-message .ttsb-countdown-timer .ttsb-countdown-item span.ttsb-countdown-number,
.ttsb-quick-checkout-form .ttsb-bogo-product-offer-message .ttsb-countdown-timer .ttsb-countdown-item span.ttsb-countdown-label{
    font-size: 13px;
}
/* BOGO Offer Products Carousel */
.ttsb-bogo-offer-products-wrap {
    position: relative;
    margin: 20px 0 0;
}

.ttsb-bogo-offer-carousel {
    position: relative;
    height: 85px;
    overflow: hidden;
}
.ttsb-bogo-offer-carousel.slick-initialized {
    height: auto;
    overflow: visible;
}
.ttsb-bogo-offer-carousel .slick-list {
    margin: 0 -10px;
}
.ttsb-bogo-offer-carousel .slick-slide {
    padding: 0 10px;
}

.ttsb-bogo-offer-carousel .slick-list {
    padding-right: 100px !important;
    margin-right: -20px;
}
.ttsb-bogo-offer-carousel-single .slick-list{
    padding-right: 0 !important;
    margin-right: -10px;
}
.ttsb-bogo-offer-products-wrap .ttsb-carousel-arrows{
    top: -35px;
    right: 0;
}
.ttsb-bogo-offer-products-wrap .ttsb-carousel-arrows .slick-arrow{
    background-color: transparent !important;
    padding: 0 !important;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 5px;
    height: 20px;
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ttsb-bogo-offer-products-wrap .ttsb-carousel-arrows .slick-arrow:hover{
    background-color: #000 !important;
    color: #fff !important;
}
.ttsb-bogo-offer-products-wrap .ttsb-carousel-arrows .slick-arrow svg {
    width: 20px;
    height: 18px;
}
.ttsb-bogo-offer-products-wrap .ttsb-carousel-arrows .slick-arrow:hover svg path{
    fill: #fff !important;
}
.ttsb-bogo-offer-products-wrap .slick-dots{
    bottom: -15px;
}
.ttsb-bogo-offer-products-wrap .slick-dots li{
    margin: 0;
}
.ttsb-bogo-offer-products-wrap .slick-dots li button:before{
    font-size: 25px;
}
.ttsb-bogo-offer-item{
    display: flex !important;
    gap: 15px;
    padding: 10px !important;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
    position: relative;
    margin: 0 10px 10px 10px;
    align-items: center;
}
.ttsb-bogo-offer-image img{
    width: 60px;
    height: 60px;
    padding: 5px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
}
.ttsb-bogo-offer-title-wrap a{
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
.ttsb-bogo-offer-add-to-cart{
    margin-left: auto;
    flex-shrink: 0;
}
.ttsb-bogo-offer-add-btn{
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.ttsb-bogo-offer-add-btn:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.ttsb-bogo-offer-add-btn:not(:disabled):hover{
    opacity: 0.9;
}
.ttsb-bogo-offer-add-btn.added{
    background-color: #46b450;
    color: #fff;
    border-color: #46b450;
}
.ttsb-bogo-offer-details-btn{
    padding: 5px 15px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    background-color: #ddd;
    color: #000;
}
.ttsb-bogo-offer-details-btn:hover:not(.disabled){
    opacity: 0.9;
    text-decoration: none;
}
.ttsb-bogo-offer-details-btn.disabled{
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* layout style two */
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-image{
    width: 100%;
}
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-carousel .slick-list{
    padding-right: 0 !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
}
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-item{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-image img{
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    padding: 0;
}
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-add-to-cart{
    margin: 0 auto;
}
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-title-wrap {
    font-size: 13px;
    line-height: 1.2;
}
.ttsb-bogo-offer-carousel-layout2 .ttsb-bogo-offer-prices{
    font-size: 12px; 
}