/* ============================================================
   custom.css — project overrides on top of the zeiran theme
   ============================================================ */

/* Mobile menu bar */
@media (max-width: 767px) {
    .mobile-menu-area {
        background-color: #262626 !important;
    }
}

/* Product card — center the single view icon */
.product-cart {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: center !important;
}
.product-cart ul {
    margin: 0;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px;
    padding: 0;
    list-style: none;
}
.product-cart ul li {
    float: none !important;
    margin: 0 !important;
}

/* Owl carousel arrow anchor */
.hot-product-area-7,
.product-tab-area-active-7 {
    position: relative;
}

/* Header */
.header .logo img {
    width: auto;
}
.header-7 .row {
    align-items: center;
}
.menu ul#nav {
    float: right;
}

/* SALE nav link */
a.nav-sale-link {
    color: #e02020 !important;
    font-weight: 900 !important;
}
a.nav-sale-link:hover {
    color: #b50000 !important;
}

/* "NEW" badge */
.label-pro-new {
    background-color: #fac652 !important;
    color: #252525 !important;
}

/* product-cart form buttons */
.product-cart ul li form {
    display: inline-block;
    margin: 0 0 3px;
}
.product-cart ul li form button {
    background-color: #fac652;
    color: #fff;
    border: none;
    display: inline-block;
    font-weight: normal;
    height: 60px;
    line-height: 60px;
    padding: 0;
    position: relative;
    text-align: center;
    width: 60px;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    transition: .5s;
}
.product-cart ul li form button:hover {
    background-color: #8e8e8e;
}

/* Homepage Collections — force readmore visible on mobile (two-tap problem) */
@media (max-width: 767px) {
    .add-area-7 .static-item a.readmore {
        opacity: 1 !important;
        bottom: 15% !important;
    }
}

/* Collection title link — no underline */
.add-area-7 .static-item-inner a.text {
    text-decoration: none !important;
    cursor: pointer;
}

/* Product page gallery — selected thumbnail highlight */
.elevatezoom-gallery {
    display: block;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: border-color .2s;
}
.elevatezoom-gallery.active,
.elevatezoom-gallery:hover {
    border-color: #fac652;
}

/* Custom zoom-on-hover (replaces ElevateZoom) */
.custom-zoom-wrapper {
    position: relative;
    cursor: crosshair;
}

/* On touch/mobile: disable zoom so the image never blocks page scroll */
@media (max-width: 991px) {
    .custom-zoom-wrapper {
        cursor: default;
        touch-action: pan-y;
    }
    #zoom-lens {
        display: none !important;
    }
}

.custom-zoom-wrapper img#zoom1 {
    width: 100%;
    display: block;
}

#zoom-lens {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 380px;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    z-index: 50;
}

/* Shop toolbar — sort dropdown + results count */
.product-page-tab {
    min-height: 42px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
}
.product-page-tab .limiter {
    left: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-page-tab .limiter .text-muted {
    font-size: 13px;
    color: #8e8e8e;
    white-space: nowrap;
}

/* Subscribe / Newsletter section background
   style.css uses url(img/s-7.jpg) relative to assets/css/ — wrong path.
   Correct path relative to this file: */
.subscribe-area-7 {
    background-image: url('../img/s-7.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
