:root{
    --grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* GENERAL */
.quick-add-wrapper {
    position: absolute;
    bottom: 10px;
    right: 6px;
    padding: 8px;
    display: block;
}

.quick-add-wrapper .button-quick-add {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    opacity: .85;
    scale: 1;
    transition: 0.8s;
}

.quick-add-wrapper:hover .button-quick-add {
    opacity: 1;
    scale: 1.1;
    transition: 0.8s;
}

.button-quick-add .icon-plus {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.button-quick-add-full {
    background-color: transparent;
    border: 1px solid var(--shop-color-secondary);
    color: var(--shop-color-secondary);
    transition: 0.3s ease;
    padding: 1rem 2rem;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.button-quick-add-full:hover {
    background-color: var(--shop-color-secondary);
    color: #fff;
}

.title-starlette {
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0 50px 130px 50px;
    color: #333333;
    text-align: center;
    display: block;
    line-height: 3rem;
    text-transform: uppercase;
}

.width-section {
    padding: 0 150px;
    margin: 100px auto;
}

.swiper-pagination-bullet-active {
    background-color: var(--shop-color-secondary);
}

@media (max-width: 1200px) {
    .width-section {
        padding: 0 100px;
    }

    .title-starlette {
        padding: 0 50px 100px 50px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .width-section {
        padding: 0 50px;
    }

    .title-starlette {
        padding: 0 20px 50px 20px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .button-quick-add-full {
        font-size: 1rem;
    }

    .width-section {
        padding: 0 20px;
    }
}
/* END GENERAL */

/* BLOCK PRODUCTS (FOR ALL PRODUCTS INSTANCES) */
.products {
    grid-template-columns: var(--grid-template-columns);
    grid-auto-flow: row dense;
    display: grid;
    align-items: start;
    grid-gap: 32px;
    justify-content: center; 
}

.products .product {
    display: flex;
    position: relative;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    width: 100%;
}

.products .product .product-url {
    display: block;
    width: 100%;
}

.products .product-url .product-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding-bottom: 100%;
}

.products .product-image-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.products .product-image-wrapper .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.products .product-image img.second-image {
    opacity: 0;
}

.products .product-image:hover .second-image {
    opacity: 1;
}

.products .product .product-info-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 16px;
}

.products .product .product-info-container .product-info {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    color: #000000;
}

.products .product .product-info .product-name {
    text-transform: capitalize;
    width : 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.products .product .product-info .container-price {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30%;
}

@media (max-width: 992px){
    .products .product .product-info-container .product-info {
        flex-direction: column;
    }

    .products .product .product-info .product-name,
    .products .product .product-info .container-price {
        width: 100%;
    }

    .products .product .product-info .container-price {
        justify-content: flex-start;
    }

    .products .product .product-info .product-name {
        word-break: break-word;
        overflow: auto;
        white-space: normal;
    }

}
/* END BLOCK PRODUCTS */


/* ************************
        HOME CONTENT 
************************* */

/* BLOCK DISCOVER */
.home-slider .slider-picture-home {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}

.home-slider .btn-discover-text {
    font-weight: 400 !important
}

.home-slider .btn-discover-link {
    border-radius: 0em !important
}

.home-slider #slider-tpop-content {
    display: none !important
}

.home-slider .hero-slider-content-2 {
    display: flex;
    justify-content: center;
}

.home-slider .btn.c-secondary {
    transition: none !important;
    background-color: white !important;
    color: black !important;
    border: 1px solid var(--shop-color-secondary) !important;
}

.home-slider .btn.c-secondary:hover {
    background-color: rgb(255, 177, 231) !important;
    color: white !important;
    border: 1px solid var(--shop-color-secondary) !important;
}
/* END BLOCK DISCOVER */

/* SLIDERS */
.banner-animated {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-animated .scrolling-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    animation: scrollBackground 15s linear infinite;
    background-position: center;
    background-size: 50% auto; 
}

.banner-animated-1 {
    height: 22vh;
    margin: 4rem 0;
}

.banner-animated-2 {
    height: 15vh;
    margin: 6rem 0;
}

@keyframes scrollBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .banner-animated .scrolling-background {
        background-size: 80% auto!important; 
    }
}

@media (max-width: 576px) {
    .banner-animated .scrolling-background {
        background-size: 100% auto!important; 
    }
}
/* END SLIDERS */

/* BLOCK NEW PRODUCTS */
.new-products .products {
    --grid-template-columns: repeat(3, minmax(0, 1fr)); 
}

.new-products .button {
    display: block;
    padding: 15px 30px;
    background-color: rgb(255, 165, 227);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
    border: none;
    max-width: 225px;
    margin: 50px auto;
    text-align: center;
    transition: all .3s ease 0s;
    border: 1px solid rgb(255, 165, 227);
}

.new-products .button:hover {
    color: rgb(255, 165, 227);
    border: 1px solid rgb(255, 165, 227);
    background-color: #fff;
}

@media (max-width: 1200px) {
    .new-products .products {
        --grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}

@media (max-width: 768px) {
    .new-products .products {
        --grid-template-columns: repeat(1, minmax(0, 1fr)); 
    }
}
/* END BLOCK NEW PRODUCTS */


/* BIG BLOCKS HOME */
.block-home-1 .col-lg-6, .block-home-2 .col-lg-6 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}
.content-block-home {
    text-align: left;
}

.title-block-1, .title-block-2 {
    font-size: 28pt;
    font-weight: bolder;
}

.subtitle-block-1, .subtitle-block-2 {
    font-size: 36pt;
    font-weight: normal;
}

.message-block-1, .message-block-2 {
    font-size: 14pt;
    font-weight: lighter;
    margin-bottom: 20px;
}

#containerHomeBlockStyle1 button,
#containerHomeBlockStyle2 button {
    width: 100% !important;
    transition: all .3s ease 0s;
}

#containerHomeBlockStyle1 button:hover,
#containerHomeBlockStyle2 button:hover {
    color: #fff;
    background-color: rgb(255, 165, 227);
}

@media (max-width: 992px){
    .content-block-home {
        text-align: center;
    }
}

@media (max-width:768px){
    .title-block-1, .title-block-2 {
        font-size: 20pt;
    }

    .subtitle-block-1, .subtitle-block-2 {
        font-size: 26pt;
    }

    .message-block-1, .message-block-2 {
        font-size: 12pt;
    }
}
/* END BIG BLOCKS HOME */


/* BLOCK GALLERY */
.gallery {
    --grid-template-columns: repeat(4, minmax(0, 1fr)); 
}

@media (max-width: 1200px) {
    .gallery {
        --grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}
/* END BLOCK GALLERY */

/* BLOCK POPULAR */
.popular-items .container {
    text-align: center;
}

.popular-items .products {
    --grid-template-columns: repeat(2, minmax(0, 1fr)); 
    grid-gap: 100px;
}
@media (max-width: 992px) {
    .popular-items .products {
        grid-gap: 32px;
    }
}
/* END BLOCK POPULAR */


/* BLOCK COMMITMENTS */
.container-commitments {
    margin: 0 auto;
    padding: 64px 16px;
    background-color: rgb(255, 230, 249);
}

.container-commitments .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.container-commitments .card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.container-commitments .body-text {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    font-size: 10pt;
    font-weight: normal;
    color: #4a4a4a;
}

.container-commitments .headcard {
    height: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.container-commitments .headcard  .title {
    text-align: center;
}

.container-commitments .icon {
    display: block;
    margin: 0 auto 16px;
}

.container-commitments .btn-more-starlette {
    display: block;
    margin: 0 auto;
    background-color: var(--shop-color-secondary);
    border: 2px solid var(--shop-color-secondary);
    padding: 0.5rem 1rem;
    color: #fff;
    width: max-content;
    transition: 0.3s ease;
}

.container-commitments .btn-more-starlette:hover {
    background-color: transparent;
    color: var(--shop-color-secondary);
}

@media(min-width: 768px) {
    .container-commitments .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 540px) {
    .container-commitments .card {
        padding: 2rem 0.5rem;
    }

    .container-commitments .headcard .title {
        font-size: 1.2rem;
    }
}
/* END BLOCK COMMITMENTS */

/* BLOCK INSTAGRAM */
.instagram-section {
    margin-top: 100px;
    margin-bottom: 100px;
}   

.instagram-swiper {
    width: 100%;
    height: 50vh;
}

.instagram-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* END BLOCK INSTAGRAM */


@media (min-width: 1900px) {
    .width-section {
        max-width: 1600px;
    }
}

/* FIX BLOCK HOME */
@media (min-width: 992px) {
    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }    
}

