/* =========================================
   PRODUCT CARD COMPONENT
   ========================================= */
.product-card {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    font-family: var(--h1-font-body, 'Outfit', sans-serif);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.product-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background-color: #ffffff;
    /* Clean background for letterboxing */
}

.product-actions-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Show actions on hover */
.product-card:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile: always show actions or handle differently */
@media (max-width: 768px) {
    .product-actions-overlay {
        opacity: 1;
        transform: translateX(0);
    }
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 15px;
}

/* HOVER EFFECT: White bg/Black icon -> Black bg/White icon */
.action-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #D93F3F;
    /* Sale Red */
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.product-details {
    padding-top: 18px;
    text-align: center;
}

.product-category {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #1C1C1C;
    text-align: center;
    /* Force 2 lines height */
    height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.product-title a:hover {
    color: #C5A059;
    /* Accent Color */
}

.product-price {
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    /* Centered */
    font-size: 15px;
    color: #1C1C1C;
}

.regular-price {
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
}

.current-price {
    color: #D93F3F;
    /* Sale color if on sale, otherwise inherit main text */
}

/* If not on sale, maybe keep it black. But for now using sale color or main color logic is inside template usually. */
/* Just making price distinct */
.btn-buy-now {
    display: flex;
    width: fit-content;
    margin: 10px auto 0;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

.btn-buy-now:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000;
    margin-top: 10px;
    /* Added spacing from price */
    cursor: pointer;
}

.btn-add-cart:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

/* REPOSITIONING BUTTONS */
/* Remove old overlay styles if conflicting or override */
/* We removed the wrapper in HTML, so .product-actions-overlay rules won't apply */

.wishlist-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .wishlist-btn,
.product-card:hover .cart-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure mobile visibility */
@media (max-width: 768px) {

    .wishlist-btn,
    .cart-btn {
        opacity: 1;
        transform: translateY(0);
    }
}