.grid-stores {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px;
    margin: 0 !important;

    .store {
        position: relative !important;
        width: calc(50% - 3px) !important;
        margin: 0 !important;
    }

    .text {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        color: #fff !important;
        padding: 10%;
        height: 100%;
        display: flex;
        gap: 2rem;
        flex-direction: column;
        justify-content: center;



        .content,
        .title {
            max-width: 450px;
        }

        .title {
            font-size: 3rem !important;
            position: relative;
            z-index: 99 !important;
        }

        .desc {
            font-size: 2rem !important;
            position: relative;
            z-index: 99 !important;
        }

        a {
            font-weight: bold !important;
            margin-top: 16px !important;
            display: block !important;
            position: relative;
            z-index: 99 !important;
        }

        .common-btn {
            max-width: max-content !important;
            margin-top: 4rem !important;
            position: relative;
            z-index: 99 !important;
        }
    }

    .gallery {
        width: 100% !important;

        .slick-slide{
            &::before{
                position: absolute;
                width: 100%;
                height: 100%;
                content: '';
                top: 0;
                left: 0;
                background: rgba(0, 0, 0, 0.7);
                z-index: 3;
            }
        }

        .slick-dots {
            width: 100% !important;
            position: absolute !important;
            z-index: 100 !important;
            bottom: 0 !important;
            right: 0 !important;
            left: 0 !important;

            li button {
                border-radius: 100% !important;
                background-color: transparent !important;
                border: 1px solid #fff !important;
                width: 12px !important;
                height: 12px !important;

                &::before {
                    display: none !important;
                }
            }

            .slick-active button {
                background-color: #fff !important;
            }
        }
    }
}

.store-single {
    padding-top: 80px;
    padding-bottom: 80px;

    .back {
        margin-bottom: 4rem !important;
    }

    .store-info {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 6rem;

        .cover {
            grid-column: span 7;

            img {
                width: 100% !important;
                object-fit: cover;
                aspect-ratio: 16 / 11;
            }
        }

        .infos {
            grid-column: span 5;
            max-width: 500px;
            display: flex;
            align-items: center;

            .text,
            .content {
                display: flex;
                flex-direction: column;
                gap: 3rem;
            }

            .title {
                font-size: 5rem;
            }

            .desc,
            p {
                font-size: 2rem;
            }

            .phone {
                font-size: 2rem;
                font-weight: bold;
            }

            .bold {
                font-weight: bold;
                font-size: 2rem;
            }
        }
    }

    .gallery {
        padding-top: 100px;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 6px;

        .half {
            grid-column: span 6;
            img {
                width: 100% !important;
                object-fit: cover;
                aspect-ratio: 16 / 8;
            }
        }

        .full {
            grid-column: span 12;
            img {
                width: 100% !important;
                object-fit: cover;
                aspect-ratio: 16 / 4;
            }
        }
    }
}

@media (max-width: 1024px) {
    .grid-stores {
        .store {
            width: 100% !important;
        }
        .text {
            padding: 3% !important;

            .title {
                font-size: 2rem !important;
            }

            .desc {
                font-size: 1rem !important;
            }
        }

        .gallery .lazyload{
            padding-bottom: 70% !important;
        }
    }

    .store-single {
        .store-info {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 4rem;

            .cover {
                grid-column: span 1;

                img {
                    aspect-ratio: 16 / 10;
                }
            }

            .infos {
                grid-column: span 1;
                max-width: 100%;
                display: block;

                .text,
                .content {
                    gap: 2rem;
                }

                .title {
                    font-size: 3rem;
                }

                .desc,
                p {
                    font-size: 1.5rem;
                }

                .phone {
                    font-size: 1.5rem;
                }

                .bold {
                    font-size: 1.5rem;
                }
            }
        }

        .gallery {
            padding-top: 60px;
            grid-template-columns: repeat(1, 1fr);
            gap: 6px;

            .half {
                grid-column: span 1;
            }

            .full {
                grid-column: span 1;
                img {
                    aspect-ratio: 16 / 8;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .grid-stores {
        .gallery .lazyload{
            padding-bottom: 100% !important;
        }

        .gallery .slick-dots {
            margin: 1rem 0 2rem !important;
        }
    }
}
