/* ==========================================================
   PRODUCT CARD
========================================================== */

.technova-product-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.technova-product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(15,23,42,.15);

}


/* ==========================================================
   IMAGE
========================================================== */

.technova-product-image{

    position:relative;

    overflow:hidden;

    background:#f8fafc;

}

.technova-product-thumbnail{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

    display:block;

}

.technova-product-image:hover
.technova-product-thumbnail{

    transform:scale(1.05);

}


/* ==========================================================
   BADGES
========================================================== */

.technova-product-badges{

    position:absolute;

    left:18px;

    top:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

    z-index:20;

}

.technova-badge-sale,
.technova-badge-new{

    padding:7px 14px;

    border-radius:999px;

    color:white;

    font-size:12px;

    font-weight:700;

}

.technova-badge-sale{

    background:#ef4444;

}

.technova-badge-new{

    background:#10b981;

}


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

.technova-product-wishlist{

    position:absolute;

    right:18px;

    top:18px;

    width:46px;

    height:46px;

    border:none;

    border-radius:999px;

    background:white;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.3s;

    z-index:20;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.technova-product-wishlist svg{

    width:20px;

    height:20px;

}

.technova-product-wishlist:hover{

    background:#ef4444;

    color:white;

    transform:translateY(-3px);

}


/* ==========================================================
   QUICK VIEW
========================================================== */

.technova-quick-view{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(15,23,42,.35);

    opacity:0;

    transition:.35s;

}

.technova-product-image:hover
.technova-quick-view{

    opacity:1;

}

.technova-quick-view-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    border:none;

    border-radius:14px;

    background:white;

    color:#0f172a;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    transform:translateY(12px);

}

.technova-product-image:hover
.technova-quick-view-btn{

    transform:translateY(0);

}

.technova-quick-view-btn:hover{

    background:#0f172a;

    color:white;

}

.technova-quick-view-btn svg{

    width:20px;

    height:20px;

}


/* ==========================================================
   CONTENT
========================================================== */

.technova-product-body{

    padding:26px;

}

.technova-product-category{

    display:block;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#64748b;

    margin-bottom:10px;

}

.technova-product-category a{

    color:inherit;

    text-decoration:none;

}

.technova-product-title{

    margin:0 0 16px;

    font-size:22px;

    font-weight:700;

}

.technova-product-title a{

    color:#0f172a;

    text-decoration:none;

}

.technova-product-title a:hover{

    color:#475569;

}


/* ==========================================================
   PRICE
========================================================== */

.technova-product-price{

    margin-bottom:18px;

}

.technova-product-price ins{

    text-decoration:none;

    font-size:26px;

    font-weight:700;

    color:#0f172a;

}

.technova-product-price del{

    color:#94a3b8;

    margin-right:10px;

}


/* ==========================================================
   STOCK
========================================================== */

.in-stock{

    color:#10b981;

    font-weight:600;

}

.out-stock{

    color:#ef4444;

    font-weight:600;

}


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

.technova-add-cart{

    margin-top:24px;

}

.technova-add-cart .button{

    width:100%;

    padding:15px;

    border-radius:14px;

    background:#0f172a;

    color:white;

    text-align:center;

    font-weight:600;

    transition:.3s;

}

.technova-add-cart .button:hover{

    background:#334155;

}


/* ==========================================================
   DARK MODE
========================================================== */

body.dark-mode
.technova-product-card{

    background:#1e293b;

    border-color:#334155;

}

body.dark-mode
.technova-product-image{

    background:#0f172a;

}

body.dark-mode
.technova-product-title a{

    color:white;

}

body.dark-mode
.technova-product-category{

    color:#94a3b8;

}

body.dark-mode
.technova-product-price ins{

    color:white;

}

body.dark-mode
.technova-product-wishlist{

    background:#334155;

    color:white;

}

body.dark-mode
.technova-quick-view-btn{

    background:#334155;

    color:white;

}

body.dark-mode
.technova-quick-view-btn:hover{

    background:white;

    color:#0f172a;

}