:root{
    --swiper-navigation-top-offset : 40%;
}
/*.site-main{*/
/*    padding: 0 20px;*/
/*}*/
.skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 20px;
}

.skeleton-image {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 8px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-text {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes shimmer {
    0% {
        background-position: 100%;
    }
    100% {
        background-position: -100%;
    }
}

.skeleton-image, .skeleton-text {
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
}

.image-section {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

.details-section {
    flex: 1;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    color: var(--theme-palette-color-2);
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
    margin-bottom: 20px;
}
.price-table{
    width: 100%;
}

.price-table h3, .attributes h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price-table table, .attributes table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td, .attributes th, .attributes td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.price-table thead {
    background-color: var(--theme-palette-color-2);
    color: #FFFFFF;
}
.price-td{
    color:var(--theme-link-initial-color);
    min-width:130px;
}

.product-colors {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

 .color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
     cursor: pointer;
}

.product-stocks {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-stocks .stock {
    min-width: 150px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
}

.product-stocks .stock p {
    margin-bottom: 0;
}

.product-stocks .stock p span {
    color: var(--theme-palette-color-2);
}

.gallery {
    width: 100%;
    max-width: 620px;
    overflow: hidden;
    position: relative;
}

.gallery-slider {
    width: 100%;
    height: 100%;
    margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next
{
    background: var(--theme-palette-color-2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
}
.gallery-slider .swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: 0;
}
.gallery-slider .swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: 0;
}
.gallery-slider .swiper-button-next:after, .swiper-button-prev:after{
    color:var(--theme-palette-color-5);
    font-size:18px;
}
.gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    text-align: center;
    overflow: hidden;
    opacity: 0.7;
    filter: grayscale(90%);
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    filter: grayscale(0%);
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    max-width: var(--theme-normal-container-max-width);
    margin: 10px auto;
    align-items: start;
}

.wrapper {
    padding: 20px 0;
    max-width: 1360px;
    margin: 10px auto;
}

.grid-filters {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.grid-main .grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}
.grid-main .grid.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: 200px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
}

.close:hover, .close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.modal.open {
    opacity: 1;
}

.modal.open .modal-content {
    opacity: 1;
    transform: translateY(0);
}

.modal.close {
    opacity: 0;
}

.modal.close .modal-content {
    opacity: 0;
    transform: translateY(-30px);
}

.category-menu {
    list-style: none;
    padding: 0;
    width: 100%;
}

.category-menu a {
    color: #333333;
}

li {
    position: relative;
    margin-bottom: 5px;
}

.toggle-btn {
    width: 20px;
    height: 100%;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submenu {
    display: none;
    margin-left: 20px;
    padding-left: 10px;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.card-boja {
    width: 22px;
    height: 22px;
    border-radius: 30px;
    border: 1px solid #ededed;
    display: block;
}

.color-popup {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
    min-height: 120px;
}

.color-popup .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.colors {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.show-more-colors {
    display: flex;
    cursor: pointer;
    background: #ffffff;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid #ededed;
    line-height: 1;
    font-size: 12px;
}

.slick-slide {
    padding: 10px;
}

.card-cena {
    margin: 10px 0 0 0;
    font-size: 16px;
    color:var(--theme-link-initial-color);
    font-weight: 600;
}

.card-block-boje {
    margin-bottom: 10px;
}

.zalihe-click {
    font-size: 14px;
    padding: 3px 12px;
    border: 1px solid #dedede;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.zalihe-click:hover {
    background: #f6f5f5;
}

.color-wrapper .visible-colors {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
 .color-sale{
     position: absolute;
     top: -14px;
     width: 22px;
     font-size: 10px;
     text-align: center;
     color: var(--theme-text-color);
}
.color-box{
    display: block;
    position: relative;
}

.model_card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.model_card_image_box {
    display: grid;
    grid-template-columns: 1fr 47px;
    grid-template-rows: 1fr;
    position: relative;
}

.model_card_image {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 8px;
    position: relative;
}
.model_card_content.category{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 14px;
    background: var(--theme-palette-color-2);
    padding: 10px;
    border-radius: 3px;
}
.model_card_content.category:hover{
    background: var(--theme-palette-color-1);
}
.model_card_content.category h3{
    color: var(--theme-palette-color-6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.model_card_image img {
    width: 100%;
}

.model_card_image_box .img1 {
    display: block;
}

.model_card_image_box .img2 {
    display: none;
}

.model_card_image_box:hover .img2 {
    display: block;
}

.model_card_image_box:hover .img1 {
    display: none;
}
.belem.model_card{
    width: 100%;
}
.belem.model_card .card-link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    bottom:0;
    right: 0;
}

.labels {
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.labels span {
    display: block;
}

.content span {
    color: var(--theme-text-color);
    font-size: 14px;
    margin-bottom: 0;
}

.content h3 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.2;
}

.belem .content h3 {
    font-weight: 500;
    color: var(--theme-text-color);
    font-size: 16px;
}

.content p {
    color: var(--theme-text-color);
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.2;
}

.product-container {
    display: flex;
    gap: 30px;
}

.image-section {
    flex: 1;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-images img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #ccc;
}

.thumbnail-images img:hover {
    border-color: var(--theme-text-color);
}

.attributes td {
    font-size: 14px;
}

.total-price {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
}

.country-selection {
    margin-bottom: 20px;
}

.country-selection label {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.country-selection select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    cursor: pointer;
    border-radius: 4px;
}

.quantity button:hover {
    background-color: #e9ecef;
}

.quantity input {
    width: 50px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.add-to-cart {
    padding: 10px 20px;
    background-color: #28a745;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.add-to-cart:hover {
    background-color: #218838;
}

.variation_attributes {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-link-initial-color);
}

.sidebar-widget.list-widget {
    width: 100%;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

h3.dg2-widget-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.list-item a {
    color: var(--theme-text-color);
}

.list-item a:hover {
    color: var(--theme-link-initial-color);
}

.list-item .post-number {
    font-size: 12px;
}

.list-colors.list-images {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;
}

.list-size {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;
}

.list-size a {
    padding: 5px;
    border: 1px solid #ededed;
    border-radius: 4px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--theme-text-color);
}

.list-size a:hover {
    color: var(--theme-link-initial-color);
}

.stickers {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.dg2-tabs {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    width: 100%;
}

.dg2-tabs-titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 25px;
}

.dg2-tabs-titles .tab {
    flex: 1;
    text-align: left;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    padding-top: 11px;
    padding-bottom: 11px;
}

.dg2-tabs-content {
    display: block;
    width: 100%;
}

.tabc {
    padding: 30px 0;
    display: block;
    width: 100%;
}

.tabc table {
    border: none;
}

.tabc table th, .tabc .table th, .tabc table td, .tabc .table td {
    border: none;
    font-size: 16px;
    padding: 7px 0;
    text-align: left;
    vertical-align: top;
}

.tabc-2 table tr td:first-child, .tabc-3 table tr td:first-child, .tabc-4 table tr td:first-child {
    font-weight: 700;
    min-width: 200px;
    width: 300px;
}

#selectsort, #selectshow, .toolbar-amount {
    font-size: 14px;
}

.tab {
    position: relative;
    cursor: pointer;
}

.tab span {
    display: block;
    font-weight: 600;
}

.tab.show:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    transition: width 0.3s;
    background: var(--theme-button-background-initial-color);
    left: 0;
}

.tab:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: width 0.3s;
    background: var(--theme-button-background-initial-color);
    left: 0;
}

.tab:hover:after {
    width: 100%;
}

.dg2-tabs-desk {
    display: flex;
}

.dg2-tabs-mobile {
    display: none;
}



table .arrivals {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
table .arrivals div{
    display: flex;
    gap: 10px;
}
table .arrivals div span{
    color: var(--theme-link-initial-color);
}

.paging {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.paging .total{
    min-width:200px;
    flex:1;
}
.paging .navigation .nav-links{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
}
.products-slider-block{
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}
.title-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.title-container h3{
    margin-bottom: 0;
}
.product-prev,
.product-next
{
    background: var(--theme-palette-color-2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    color: var(--theme-palette-color-5);
}
.product-prev svg,
.product-next svg{
    width: 24px;
}
.swiper-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:10px;
}
.swiper-wrapper{
    align-items: stretch;
}
.products-slider-block .swiper-slide{
    height: auto !important;
    display: flex !important;
}
.slider-block .swiper-slide{
    height: auto !important;
    display: flex !important;
}
.toggle-filters{
    display: none;
}

/* Default table layout for larger screens */
.price-attribute-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-attribute-table table th {
    padding: 7px 12px;
    text-align: left;
    border: 1px solid #ddd;
}
.price-attribute-table table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}
.breadcrumb-container{
    display: flex;
    gap:8px;
    font-size:13px;
}
.meta-data{
    font-size: 14px;
}
.meta-data span{
    color: var(--theme-link-initial-color);
}
.meta-data a, .main-price {
    font-weight: 600;
}
.meta-data a:hover{
    color: var(--theme-text-color);
}

.category-title{
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.3;
}
.category-title-wrapper{
    padding-bottom: 0;
    border-bottom: 1px solid var(--theme-border-color);
}
.additional-info{
    margin-bottom: 24px;
}
.additional-title{
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}
.additional-content{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}
.additional-image{
   width: 100%;
    height: auto;
}
.variation-option {
    display: inline-block;
    margin: 10px;
    text-align: center;
}
.variation-option input[type="radio"] {
    display: none;
}
.variation-option img {
    border: 2px solid transparent;
    cursor: pointer;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}
.variation-option input[type="radio"]:checked + img {
    border-color: #0073aa;
}

@media (max-width: 800px) {
    #modalData{
        overflow-x: auto;
    }
    .product-container{
        flex-direction: column;
        gap:10px;
    }
    .dg2-tabs-desk {
        display: none;
    }

    .dg2-tabs-mobile {
        display: flex;
        flex-direction: column;
    }

    .dg2-tabs-titles {
        flex-direction: column;
        gap: 0;
    }

    .dg2-tabs-mobile .dg2-tabs-titles .tab {
        width: 100%;
    }

    .tabc-2 table tr, .tabc-3 table tr, .tabc-4 table tr {
        display: flex !important;
        flex-direction: column !important;
    }
    .tabc{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .wrapper-grid {
        display: block;
        padding: 0;
    }
    .grid-main .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

    }
    .grid-main .grid.grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-filters {
        position: fixed;
        top: 0;
        left: -270px; /* Initially hidden */
       width:250px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease-in-out;
        padding: 20px;
        z-index: 1000;
        overflow-y: scroll;
    }

    .grid-filters.show {
        left: 0; /* Slide in */
        width: 90%;
    }

    .toggle-filters {
        border: 1px solid var(--theme-button-background-hover-color);
        border-radius: 3px;
        padding: 10px 15px;
        cursor: pointer;
        text-align: center;
        width: auto;
        margin-bottom: 20px;
        color: var(--theme-button-background-hover-color);
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
    .toggle-filters svg{
        width: 26px;
    }
    .title-container h3{
        font-size: 18px;
    }

    .price-attribute-table   table {
        display: block;
        width: 100%;
    }

    .price-attribute-table  table thead {
        display: none; /* Hide the header row */
    }

    .price-attribute-table  table tbody tr {
        display: block;
        margin-bottom: 10px;
        border-top: 1px solid var(--theme-table-border-color);
    }

    .price-attribute-table  table tbody td {
        display: block;
        padding: 3px 10px;
        text-align: left;
        border: none;
    }

    .price-attribute-table  table tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        display: inline-block;
        color:var(--theme-text-color);
        margin-right: 10px;
        width: 50px;
    }

    /* Optional styling for price columns */
    .price-attribute-table  table tbody td.price-td {
        text-align: left;
    }
}


.download-pdf {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--theme-border-color);
    border-radius: 3px;
    padding: 6px 12px;
    background: transparent;
    color: var(--theme-link-initial-color);
    cursor: pointer;
}



.price-widget-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-slider {
    position: relative;
    height: 30px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    margin: 8px 0;
    position: absolute;
    pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.apply-price-filter {
    display: block;
    width: 100%;
    padding: 8px;
    background-color: var(--theme-button-background-initial-color);
    color: var(--theme-button-text-initial-color);
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-price-filter:hover {
    background-color: var(--theme-button-background-hover-color);
}
.toolbar{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    gap: 26px;
    font-size: 14px;
}

.sort-dropdown {
    position: relative;
}
.sort-dropdown label{
    font-size: 14px;
}
.custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:4px;
    padding: 8px 12px;
    background: none;
    color:var(--theme-text-color)
}

.dropdown-toggle svg {
    transition: transform 0.3s;
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    z-index: 10;
    padding: 0;
    list-style: none;
}

.custom-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}


.dropdown-menu svg {
    width: 16px;
    height: 16px;
    fill: #333;
}

.total-stock{
    font-size: 14px;
    margin-bottom: 10px;
}
.hideli{
    display: none !important;
}


/********************************************/
/* BLOCKS section */
/********************************************/


.grid-div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.grid-div img{
    width: 100%;
    height: auto;

}
.grid-div a{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.grid1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.grid1 .div1 { grid-area: 1 / 1 / 3 / 3; }
.grid1 .div2 { grid-area: 1 / 3 / 2 / 5; }
.grid1 .div3 { grid-area: 2 / 3 / 3 / 5; }
.grid1 .div4 { grid-area: 1 / 5 / 3 / 7; }



@media (max-width:860px){
    .grid1 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .grid1  .div1 { grid-area: 2 / 1 / 4 / 2; }
    .grid1  .div2 { grid-area: 1 / 1 / 2 / 2; }
    .grid1  .div3 { grid-area: 1 / 2 / 2 / 3; }
    .grid1  .div4 { grid-area: 2 / 2 / 4 / 3; }
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.grid2 .div1 { grid-area: 1 / 1 / 3 / 5; }
.grid2 .div2 { grid-area: 1 / 5 / 2 / 7; }
.grid2 .div3 { grid-area: 1 / 7 / 2 / 9; }
.grid2 .div4 { grid-area: 2 / 5 / 3 / 7; }
.grid2 .div5 { grid-area: 2 / 7 / 3 / 9; }


@media (max-width:860px){
    .grid2  {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .grid2  .div1 { grid-area: 3 / 1 / 4 / 3; }
    .grid2  .div2 { grid-area: 1 / 1 / 2 / 2; }
    .grid2  .div3 { grid-area: 1 / 2 / 2 / 3; }
    .grid2 .div4 { grid-area: 2 / 1 / 3 / 2; }
    .grid2 .div5 { grid-area: 2 / 2 / 3 / 3; }
}


.grid3 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 22px;
    grid-row-gap: 26px;
}

.grid3 .div1 { grid-area: 1 / 1 / 3 / 4; }
.grid3 .div2 { grid-area: 1 / 4 / 2 / 8; }
.grid3 .div3 { grid-area: 2 / 4 / 3 / 8; }
.grid3 .div4 { grid-area: 1 / 8 / 3 / 11; }

@media (max-width:860px){
    .grid3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .grid3  .div1 { grid-area: 2 / 1 / 4 / 2; }
    .grid3  .div2 { grid-area: 1 / 1 / 2 / 2; }
    .grid3  .div3 { grid-area: 1 / 2 / 2 / 3; }
    .grid3  .div4 { grid-area: 2 / 2 / 4 / 3; }
}

.boxes-slider .box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #EFEFF0;
    border-radius: 8px;
    position: relative;

}
.boxes-slider .box .box-image{
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.boxes-slider .box .box-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.boxes-slider .box h3{
   font-size: 20px;
    text-align: center;
    margin-bottom: 0;
    color:var(--theme-link-initial-color)
}
.boxes-slider .box .box-link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.testimonials .testimonial {
    background: #fff;
    padding: 24px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap:16px;
    height: 100%;

}
.testimonials .testimonial-author{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

}
.testimonials .testimonial-name{
    display: flex;
    flex-direction: column;
    gap:2px;
    justify-content: center;
    align-items: flex-start;
}
.testimonials .testimonial-name p{
    margin-bottom: 0;
    line-height: 1.1;
}
.testimonials .testimonial-image {
    border-radius: 50%;
    overflow: hidden;
    width: 68px;
    border:1px solid var(--theme-link-initial-color)
}

