/* Start custom CSS *//* =========================================================
   PREMIUM ICON + BUTTON UI
   Premium WooCommerce Single Product
   ========================================================= */

/* ---------- ALL SVG ICONS ---------- */

.pwsp-btn svg,
.pwsp-contact svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}


/* ---------- MAIN BUTTONS ---------- */

.pwsp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 0 12px;
}

.pwsp-btn {
    position: relative;
    height: 52px;
    border: 0;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-family: Arial, "Noto Sans Bengali", sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    cursor: pointer;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


/* Icon movement */

.pwsp-btn:hover svg {
    transform: scale(1.12) translateY(-1px);
}


/* ---------- ADD TO CART ---------- */

.pwsp-cart-btn {
    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #ffb300 0%,
        #f59f00 100%
    ) !important;

    box-shadow:
        0 7px 18px rgba(245,159,0,.20),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.pwsp-cart-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(245,159,0,.30),
        inset 0 1px 0 rgba(255,255,255,.25);

    filter: brightness(1.04);
}


/* ---------- BUY NOW ---------- */

.pwsp-buy-btn {
    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #13a861 0%,
        #07894c 100%
    ) !important;

    box-shadow:
        0 7px 18px rgba(8,137,76,.20),
        inset 0 1px 0 rgba(255,255,255,.20);
}

.pwsp-buy-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(8,137,76,.30),
        inset 0 1px 0 rgba(255,255,255,.20);

    filter: brightness(1.05);
}


/* ---------- BUTTON LIGHT EFFECT ---------- */

.pwsp-btn::after {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .65s ease;

    pointer-events: none;
}

.pwsp-btn:hover::after {
    left: 140%;
}


/* ---------- CONTACT BUTTONS ---------- */

.pwsp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pwsp-contact {
    position: relative;

    min-height: 52px;
    padding: 7px 14px;

    border: 1px solid #dfe6e3;
    border-radius: 12px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #26332e;

    text-decoration: none;

    box-shadow: 0 3px 10px rgba(0,0,0,.025);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.pwsp-contact:hover {
    transform: translateY(-2px);

    border-color: #b8dcca;

    background: #fbfffd;

    box-shadow:
        0 8px 22px rgba(15,80,50,.09);
}


/* ---------- CONTACT ICON CIRCLE ---------- */

.pwsp-contact > span:first-child {

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #effaf4;

    color: #0ca45a;

    box-shadow:
        inset 0 0 0 1px #d8f1e3;

    transition:
        transform .3s ease,
        background .3s ease;
}

.pwsp-contact:hover > span:first-child {
    transform: scale(1.08);
    background: #e4f8ed;
}


/* ---------- PHONE ICON ---------- */

.pwsp-contact:not(.pwsp-wa) > span:first-child svg {
    stroke: #0ca45a;
}


/* ---------- WHATSAPP ---------- */

.pwsp-wa {
    color: #16b85d !important;

    animation: whatsappSoftPulse 2.8s infinite;
}

.pwsp-wa svg {
    stroke: #16b85d;
}

.pwsp-contact:hover .pwsp-wa {
    animation: none;
}


/* Soft WhatsApp animation */

@keyframes whatsappSoftPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }

    100% {
        transform: scale(1);
    }

}


/* ---------- CONTACT TEXT ---------- */

.pwsp-contact strong {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    color: #26332e;
}

.pwsp-contact small {
    display: block;

    margin-top: 2px;

    font-size: 9px;
    line-height: 1.3;

    color: #89948f;
}


/* ---------- FEATURE ICONS ---------- */

.pwsp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 20px;
}

.pwsp-features > div {
    text-align: center;
    color: #61706a;
}


/* Premium icon box */

.pwsp-feature-icon {

    width: 46px;
    height: 46px;

    margin: 0 auto 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        145deg,
        #f4fcf7,
        #e8f8ef
    );

    color: #0c9e58;

    border: 1px solid #d9f0e2;

    box-shadow:
        0 5px 14px rgba(11,145,78,.07),
        inset 0 1px 0 rgba(255,255,255,.8);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* If feature icon contains SVG */

.pwsp-feature-icon svg {
    width: 21px;
    height: 21px;

    stroke: currentColor;
    fill: none;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform .3s ease;
}


/* Hover */

.pwsp-features > div:hover .pwsp-feature-icon {

    transform: translateY(-4px);

    background: linear-gradient(
        145deg,
        #eaf9f0,
        #ddf4e7
    );

    box-shadow:
        0 9px 20px rgba(11,145,78,.13);
}

.pwsp-features > div:hover .pwsp-feature-icon svg {
    transform: scale(1.1);
}


/* Feature title */

.pwsp-features b {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;

    color: #26332e;
}


/* Feature description */

.pwsp-features small {
    font-size: 9px;
    line-height: 1.5;

    color: #89948f;
}


/* ---------- QUANTITY BOX ---------- */

.pwsp-qty {

    height: 44px;

    display: flex;
    align-items: center;

    border: 1px solid #dce5e1;

    border-radius: 10px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 3px 10px rgba(0,0,0,.025);
}

.pwsp-qty button {

    width: 42px;
    height: 44px;

    border: 0;

    background: #ffffff;

    color: #8a9690;

    font-size: 18px;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.pwsp-qty button:hover {
    background: #f0faf5;
    color: #0c9e58;
}

.pwsp-qty input {

    width: 42px;
    height: 44px;

    border: 0;

    background: #ffffff;

    text-align: center;

    outline: none;

    color: #0c9e58;

    font-size: 14px;
    font-weight: 600;
}


/* ---------- MOBILE ---------- */

@media (max-width: 520px) {

    .pwsp-actions,
    .pwsp-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pwsp-btn {
        height: 52px;
    }

    .pwsp-contact {
        min-height: 52px;
    }

    .pwsp-features {
        gap: 5px;
    }

    .pwsp-feature-icon {
        width: 42px;
        height: 42px;
    }

}/* End custom CSS */