/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: A child theme for the Astra WordPress theme.
Author: Your Name
Author URI: https://yourwebsite.com
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

:root{
    --box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --text-color: #2B2B2B;
    --heading-font: 'Montserrat', "sans-serif";
    --text-font: "Manrope", "sans-serif";
}

/* General */
#page .btn a{
    font-size: 16px;
    font-weight: 700;
}
#page .btn-primary a {
    border-radius: 30px;
    padding: 12px 30px;
}
#page .btn-simple a {
    background-color: transparent !important;
    color: #a92224;
    font-family: 'Montserrat' !important;
    position: relative;
    font-size: 18px;
    padding: 0 !important;
}

#page .btn-simple a::before,#page .btn-simple a::after {
    content: "";
    position: absolute;
    left: -15px;
    top: 5px;
    width: 8px;
    height: 8px;
    background-color: #e5ac39;
    border-radius: 50%;
}
#page .btn-simple a::after{
    animation: ping 1.7s ease infinite;
    opacity: 0.25;
}
span.yellow-text {
    color: #e5ac39;
    font-weight: 800;
    text-transform: capitalize;
}
/* General */

/* Header */

/* Header */

/* Banner */

/* Banner */


/* Prouct Slider */
.icon-atc a:first-child {
    display: none;
}
.product-cstm > a img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}
.product-cstm .prod-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}
.product-cstm .prod-desc h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600 !important;
    font-family: var(--heading-font);
    color: var(--text-color);
}
.product-cstm span.price del {
    color: #a8a8a8;
    font-weight: 200;
    font-size: 14px;
}
.product-cstm span.price ins {
    color: #a92224;
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 17px;
}
.product-cstm,.product-cstm figure {
    position: relative;
    overflow: hidden;
}
.product-cstm .icon-atc {
    position: absolute;
    bottom: 0;
    left: calc(50% - 10px);
    transform: translateX(-50%) translateY(100%);
    margin: 0;
    opacity: 0;
    transition: all 0.2s ease-in;
}
.product-cstm:hover .icon-atc {
    transform: translateX(-50%) translateY(-80%);
    opacity: 1;
}
.product-cstm .icon-atc .add_to_cart_button {
    font-size: 16px;
    padding: 10px 30px;
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #e5ac39;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.product-cstm:hover figure{
    border-radius: 8px;
}
.product-cstm figure::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #00000040;
    transition: all 0.2s ease-in;
    top: 0;
    left: 0;
}
.product-cstm:hover figure::after{
    opacity: 1;
}
/* Prouct Slider */


@keyframes ping {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }