.olir-wrapper {
    padding: 40px 0;
}

.olir-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.olir-tabs .tab {
    margin: 0 20px;
    font-size: 14px;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

.olir-tabs .active {
    border-bottom: 2px solid #000;
    font-weight: 600;
}

/* GRID MODE */
.grid-mode {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* SLIDER MODE */
.slider-mode .olir-card {
    padding: 0 12px;
}

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

.olir-img {
    position: relative;
    overflow: hidden;
}

.olir-img img {
    width: 100%;
    display: block;
}

.add-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: #e5e5e5;
    padding: 12px;
    text-align: center;
    transition: 0.3s;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.olir-img:hover .add-cart-btn {
    bottom: 0;
}

.price {
    font-weight: 600;
    display: block;
    margin-top: 5px;
}
/* =============================
   OLIR Typography System
============================= */

.olir-wrapper {
    font-family: 'Albert Sans', sans-serif;
}

.olir-tabs .tab {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-size: 15px;
}

.olir-card h4 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
}

.price {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
}

/* =============================
   PRODUCT IMAGE SIZE
============================= */

.olir-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 348 / 552;
    border-radius: 5px;
}

.olir-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Hide secondary by default */
.secondary-img {
    opacity: 0;
}

/* On hover show secondary */
.olir-img:hover .secondary-img {
    opacity: 1;
}

.olir-img:hover .primary-img {
    opacity: 0;
}

/* =============================
   WISHLIST ICON
============================= */

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

.wishlist-icon:hover {
    background: #000;
    color: #fff;
}

/* =============================
   ADD TO CART HOVER
============================= */

.add-cart-btn {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff2d75, #ff4f8b);
    color: #fff !important;
    padding: 14px;
    text-align: center;
    transition: 0.3s;
    text-decoration: none;
    font-family: 'Albert Sans', sans-serif;
    font-size: 14px;
}
.add-cart-btn:hover {
    background: linear-gradient(135deg, #e6005c, #ff2d75);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 45, 117, 0.35);
}
.olir-img:hover .add-cart-btn {
    bottom: 0;
}
/* =============================
   TI WISHLIST PREMIUM STYLE
============================= */

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: -10px; /* add space from right */
    z-index: 10;
}

.wishlist-icon .tinv-wraper {
    margin: 0;
}

.wishlist-icon .tinvwl_add_to_wishlist_button {
    background: linear-gradient(135deg, #ff2d75, #ff4f8b) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(255, 45, 117, 0.25);
    transition: all 0.3s ease;
}

.wishlist-icon .tinvwl_add_to_wishlist_button:before {
    font-size: 17px !important;
}

.wishlist-icon .tinvwl_add_to_wishlist_button:hover {
    background: linear-gradient(135deg, #e6005c, #ff2d75) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 45, 117, 0.35);
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
    position: absolute;
    top: 55% !important;
    left: 55% !important;
    margin-right: 0;
}
/* Make slider relative */
.olir-products.slider-mode {
    position: relative;
}

/* Remove slick default icon & text */
.olir-products.slider-mode .slick-prev:before,
.olir-products.slider-mode .slick-next:before {
    content: '' !important;
    display: none !important;
}

/* Base arrow style */
.olir-products.slider-mode .slick-prev,
.olir-products.slider-mode .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 42px !important;
    height: 42px !important;

    background: linear-gradient(135deg, #ff2d75, #ff4f8b) !important;
    box-shadow: 0 10px 25px rgba(255, 45, 117, 0.35) !important;

    z-index: 30;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Position */
.olir-products.slider-mode .slick-prev {
    left: -20px !important;
}

.olir-products.slider-mode .slick-next {
    right: -20px !important;
}

/* White arrow icon */
.olir-products.slider-mode .slick-prev::after,
.olir-products.slider-mode .slick-next::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 50%;
    left: 50%;
}

.olir-products.slider-mode .slick-prev::after {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.olir-products.slider-mode .slick-next::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Show arrows only on hover */
.olir-products.slider-mode:hover .slick-prev,
.olir-products.slider-mode:hover .slick-next {
    opacity: 1;
}

/* Hover animation (still pink, no black) */
.olir-products.slider-mode .slick-prev:hover,
.olir-products.slider-mode .slick-next:hover {
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 15px 35px rgba(255, 45, 117, 0.45) !important;
}
/* Hide slick text completely */
.olir-products.slider-mode .slick-prev,
.olir-products.slider-mode .slick-next {
    font-size: 0 !important;
    color: transparent !important;
}

/* Remove default pseudo content */
.olir-products.slider-mode .slick-prev:before,
.olir-products.slider-mode .slick-next:before {
    content: '' !important;
    display: none !important;
}
.slick-disabled{
    display: none !important;
}