.fragrance-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    list-style: none;
    padding: 20px;
    color: #C7AB6C; /* Gold text */
}

.product-slide {
    width: 100%;
}

.product-grid-box {
    position: relative;
    text-align: center;
    transition: border.3s ease;
}

.product-grid-box:hover {
    border: 2px solid #C7AB6C;
}

.pro-grid-img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.pro-grid-img .main-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.pro-grid-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgb(3 3 3 / 5%);
    color: #C7AB6C;
    padding: 5px 10px;
    font-size: 12px;
    z-index: 2;
}

.pro-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0; /* Behind main img */
}

.product-grid-box:hover .pro-objects {
    opacity: 1;
}

.pro-objects span {
    position: absolute;
}
/*top right*/
.pro-objects span:nth-child(1) {
    left: 40%;
    top: 25%;
    transform: rotate(45deg); /* Equal to rotateZ(45deg) */
}
/*promegrande*/
.pro-objects span:nth-child(2) {
    left: 45%;
    bottom: 20%;
       transform: rotate(25deg); /* Equal to rotateZ(45deg) */
}
/*cinnamon*/
.pro-objects span:nth-child(3) {
    right: 40%;
    top: 30%;

}

.pro-objects span img {
    max-width: 220px;
    height: auto;
    opacity: 0.8;
}

.pro-grid-info {
    margin-top: -15%;
}

.pro_title {
    display: block;
    font-size: 24px;
    color: #000;
    padding-bottom: 3%;
}

.pro_price {
    display: block;
    font-size: 18px;
    color: #C7AB6C;
}

.hover_box {
    display: none;
    padding: 15px;
    margin-top: 10px;
    color: #fff;
    text-align: left;
    transition: all 0.3s ease;
}

.product-grid-box:hover .hover_box {
    display: block;
}

.notes-pyramid, .description-story {
    margin-bottom: 15px;
}

.notes-pyramid strong, .description-story strong {
    color: #C7AB6C;
    display: block;
    margin-bottom: 5px;
}

.add-to-cart {
    text-align: center;
}

.add-to-cart form {
    margin: 0;
}

a.added_to_cart.wc-forward {
    padding-left: 5%;
}
.slider-slide {
    margin-top: 5%;
}

h3.slider-title { 
	color: #fff !important; 
    margin-top: 30%;
}
p.slider-price {
    margin-top: -20% !important;
}

@media (max-width: 768px) {
    .fragrance-product-grid {
        grid-template-columns: 1fr;
    }
    
        span.pro-grid-tag {
   line-height: 1.4;
        margin-top: -15%;
        margin-left: 15%;
}

p.slider-price {
    font-size: 12px !important;
}
.pro-objects span img {
    max-width: 60px !important;
}
h3.slider-title {
    margin-top: 0px;
    padding: 0px;
    font-size: 14px !important;
}
span.pro-grid-tag {
    display: none;
}
p.slider-price {
    margin-top: 0% !important;
}
}