/* Preloader - center logo and content */
#preloader .ctn-preloader .animation-preloader {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
#preloader .preloader-logo {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}
#preloader .preloader-logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.checkout__mian {
    padding: 4rem 2rem 0 0;
    width: 50%
}

.checkout__mian--header {
    padding: 0
}

@media only screen and (min-width:992px) {
    .checkout__mian {
        padding: 5rem 5rem 0 0
    }
}

@media only screen and (max-width:767px) {
    .checkout__mian {
        width: 100%;
        padding: 3rem 0 0
    }
}


.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    margin: 20px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.google-login-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-login-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Product card - uniform image size, full content visible (no cropping) */
.product__items--thumbnail {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Increase height so full product image (including top text) is visible */
.shop__product--wrapper .product__items--thumbnail.adjust_product_height,
.product__grid--inner .product__items--thumbnail.adjust_product_height {
    height: 300px !important;
}
@media only screen and (max-width:991px) {
    .shop__product--wrapper .product__items--thumbnail.adjust_product_height,
    .product__grid--inner .product__items--thumbnail.adjust_product_height {
        height: 260px !important;
    }
}
.product__items--thumbnail .product__items--link {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    overflow: hidden;
}
.product__items--thumbnail.adjust_product_height .product__items--link {
    flex: 1;
}
.product__items--thumbnail .product__items--img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Product list view - uniform thumbnail, enough height for full image */
.product__list--items .product__items--thumbnail {
    flex-shrink: 0;
    height: 260px;
    overflow: hidden;
}
.product__list--items .product__items--thumbnail .product__items--link {
    width: 100%;
    height: 100%;
    display: block;
}
.product__list--items .product__items--img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.product__list--items .product__secondary--img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: contain;
    object-position: center;
}
@media only screen and (min-width:768px) {
    .product__list--items .product__items--thumbnail {
        height: 300px;
    }
}























