
/* Single Product Template */
body.continental-products-template-default.single,
body.tax-product-category,
body.post-type-archive-continental-products {
    background-color: var(--wp--preset--color--accent-4);
    color: white;
}
body.tax-product-category > .wp-site-blocks > .sticky-wrapper,
body.post-type-archive-continental-products > .wp-site-blocks > .sticky-wrapper {
    position: relative;
}

.wp-block-group.product_body {
    margin-top: 100px;
    /* background-color: white; */
    background-color: #f8f8f8;
    color: black;
    padding: 40px 40px 0 40px;
    border-top: 80px solid white;
}

.wp-block-group.product_body .wp-block-columns {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 60px;
}
.wp-block-group.product_body .wp-block-columns .wp-block-column {
    transform: translateY(-80px);
}

/* Single Product Content */
.product_content {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    /* overflow: hidden; */
    box-sizing: border-box;
}

.product_top {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05); 
    box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05);
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(128,128,128,0.1);
    margin-bottom: 40px;
}

.product_details {
    position: relative;
    z-index: 3;
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto 1fr;
    align-items: flex-start;
    /* width: calc(100% - 40px); */
    width: 100%;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 0 16px 16px 0;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05); 
    box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05);
}
.product_details * {
    box-sizing: border-box;
    max-width: 100%;
}

.product_model {
    
    display: inline;
   
    width: auto;
}
.product_model > span {
    display: inline-block;
    width: auto;
    background: #fff1f3;
    color: #d41f38;
     padding: 10px 18px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.product_title {
    font-size: 42px;
    font-weight: 500;
}

.product_info {
    grid-column: 1 / span 2;
}

.product_details ul.product_highlights {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.product_details ul.product_highlights li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.product_details ul.product_highlights li span.imgicons {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    transform: translateY(4px);
}
.product_details ul.product_highlights li span.dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #4aad51;
    transform: translateY(4px);
}
.product_details ul.product_highlights li span.imgicons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.product_details .product_buttons {
    align-self: flex-end;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product_details .product_buttons a.product_btn,
.product_details .product_buttons button {
    background: #d41f38;
    border: 1px solid #d41f38;
    padding: 10px 24px;
    color: white;
    margin: 0;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.9;
    transition: all .25s ease;
}
.product_details .product_buttons a.product_btn:hover,
.product_details .product_buttons button:hover {
    opacity: 1;
}

/* Product Photo Gallery */
.product_gallery {
    position: relative;
    z-index: 2;
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    display: inline-block;
    width: 100%;
    background: #fafafa;
    padding: 40px;
    /* border-radius: 16px; */
    border: 1px solid rgba(112,112,112,0.05);
    box-sizing: border-box;
    max-width: 400px;
}
.product_gallery #lightgallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 10px;
    row-gap: 20px;
}

.product_gallery #lightgallery > a {
    display: inline-block;
    width: 100%;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px;
    box-sizing: border-box;
}
.product_gallery #lightgallery > a:first-child {
    grid-column: 1 / span 4;
}
.product_gallery #lightgallery > a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

/* Breadcrumbs */
.product_breadcrumbs {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.7);
    padding-top: 16px;
}
h1.product_title {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-size: 42px;
    color: #d41f38;
    flex-basis: 100%;
    text-transform: uppercase;
    padding: 0;
    margin: 20px 0 0 0;
}
div.product_description {
    padding-top: 10px;
}
.product_breadcrumbs a {
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: all .25s ease;

}
.product_breadcrumbs a:hover {
    color: rgba(255,255,255,1);
    text-decoration: none;
}
.product_breadcrumbs span.dashicons.dashicons-admin-home {
    display: inline-block;
    padding-left: 0px;
    padding-right: 6px;
    transform: translateY(-2px);
}
.product_breadcrumbs span.dashicons.dashicons-arrow-right-alt2 {
    display: inline-block;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 16px !important;
    color: rgba(255,255,255,0.7);
    transform: translate(1px,3px);
}
.product_breadcrumbs span.prod {
    text-transform: uppercase;
    color: white;
}





/* lightboxGallery */
.lg-backdrop {
    /* background-color: rgba(255,255,255,0.7); */
    background-color: rgba(8,23,48,0.9);
    backdrop-filter: blur(8px);
}
.lg-outer img.lg-object {
    padding: 10px;
    border-radius: 10px;
    background: white;
    overflow: hidden;
}
.lg-toolbar {
    top: 50px;
}

/* Simple Popups */
#simple-popup {
    background: rgba(8,23,48,0.7);
    backdrop-filter: blur(8px);
}
.submittal_content {
    display: none;
}
.submittal_wrapper {
    display: flex;
    grid-template-columns: 1fr;
    gap: 10px;
    flex-direction: column;
}
.simple-popup-content {
    border-radius: 12px;
    padding: 40px;
}
.simple-popup-content a.product_btn {
    background: #d41f38;
    border: 1px solid #d41f38;
    padding: 10px 24px;
    color: white;
    margin: 0;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.9;
    transition: all .25s ease;
    width: auto;
}
.simple-popup-content a.product_btn:hover {
    opacity: 1;
}
.video_content {
    display: none;
}
.video_wrapper {
    display: flex;
    position: relative;
    width: 100%;
    overflow:hidden;
    column-gap: 20px;
    row-gap: 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
}
.video_wrapper > .youtube_preview {
    width: 560px;
    height: auto;
    display: inline-block;
    padding: 0;
    max-width: 100%;
    position: relative;
    aspect-ratio: unset;
}

/* Product Bottom & Tabs */
.product_bottom {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0;
    box-sizing: border-box;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05); 
    box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05);
    overflow: hidden;
}

.product_bottom .product_info {

}
.product_bottom .product_info ul.product_info_tabs {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.product_bottom .product_info ul.product_info_tabs li {
    text-transform: uppercase;
    font-weight: 500;
    
}
.product_bottom .product_info ul.product_info_tabs li a {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.product_bottom .product_info .product_info_content {
    padding: 40px;
}

/* Tabby Overrides */
[role=tab] {
    border: 1px solid transparent;
    border-top-color: #d3d3d3;
    display: block;
    padding: .5em 1em;
    text-decoration: none;
    border-radius: 0;
}
[role=tab]:hover {
    background-color: #fff6f7 !important;
    border: 1px solid transparent !important;
    border-bottom-color: #d41f38 !important;
    border-radius: 0;
}
@media (min-width: 30em) {
    [role=tab][aria-selected=true] {
        background-color: #fff6f7;
        border: 1px solid transparent;
        border-bottom-color: #d41f38;
        border-radius: 0;
    }
}

/* Product Additional */
.product_additional {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.05);
    box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.05);
    overflow: hidden;
    margin-top: 40px;
}

/* Dimensional Drawings */
.dimensional {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
}
.dimensional a {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-decoration: none;
    color: var(--wp--preset--color--accent-1);
    font-weight: bold;
}
.dimensional img {
    max-width: 100%;
}

/* DataTables Overrides */
table.dataTable>thead>tr>th, 
table.dataTable>thead>tr>td {
    background-color: #f7faff;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 20px;
}

table.dataTable {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    overflow: hidden;
}
div.dt-container div.dt-layout-row {
    /* display: none; */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

table.dataTable.display>tbody>tr>td:nth-child(1) {
    font-weight: bold;
    color: #d41f38;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  overflow-y: scroll !important;
  overflow-x: scroll !important;
}
div.dt-container.dt-empty-footer .dt-scroll-body {
    border-radius: 0 !important;
}


/* Accordion Taxonomy / Product Navigation */
.product_navigation_wrapper {
    background-color: white;
    border: 2px solid white;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05); 
    box-shadow: 0px 0px 10px 10px rgba(128,128,128,0.05);
    transform: translateY(-80px);
}
.product_navigation_wrapper > h2 {
    color: white;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #0c2651;
    padding: 16px 24px 16px 24px;
    margin: 0;
    border-radius: 14px 14px 0 0;
}
ul.product_navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.product_navigation_wrapper .contact_wrapper {
    box-sizing: border-box;
    width: calc(100% + 4px);
    position: relative;
    transform: translate(-2px,2px);
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 0 0 16px 16px;
}
.product_navigation_wrapper .contact_wrapper > a {
    display: inline-grid;
    width: 80%;
    border: 1px solid rgba(0,0,0,0.5);
    color: rgba(0,0,0,0.7);
    background-color: #f4f4f4;
    align-content: center;
    justify-content: center;
    padding: 8px 24px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all .3s ease;
}
.product_navigation_wrapper .contact_wrapper > a:hover {
    background-color: white;
}

/* Top Level Product Category Taxonomy */
ul.product_navigation {
    padding: 10px;
}
ul.product_navigation > li {
    padding-right: 0px;
    /* background: rgba(0,0,0,0.1); */
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    margin-bottom: 3px;
    /* background: rgba(255,255,255,1); */
    cursor: pointer;
}
ul.product_navigation > li > a {
    color: black;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 8px 24px;
    box-sizing: border-box;
    /* background: rgba(0,0,0,0.1); */
    transition: all .25s ease;
    position: relative;
    z-index: 2;
    border-radius: 8px;
}
ul.product_navigation > li > a:hover {
    color: #d41f38;
}
ul.product_navigation > li.active > a {
    background: #fff1f3;
    color: #d41f38;
}
/* ul.product_navigation > li > a:hover {
    background: rgba(0,0,0,0.2);
} */
ul.product_navigation > li:has(>ul)::after {
    /* content: "\f347"; */
    content: "\f345";
    display: inline-grid;
    width: 40px;
    height: 40px;
    /* background: rgba(255,0,0,0.1); */
    font-family: "dashicons";
    line-height: 16px;
    position: absolute;
    z-index: 3;
    right: 0px;
    top: 0;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    transition: all .3s ease;
    transform: rotate(0deg);
    transform-origin:center center;
}
ul.product_navigation > li:has(>ul).active::after {
    transform: rotate(90deg);
    color: #d41f38;
}
ul.product_navigation > li > a span.cat-description {
    display: none;
}

/* Second Level Product Category Taxonomy */
ul.product_navigation > li > ul,
ul.product_navigation > li > ul > li > ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    max-height: 0;
    transition: all .3s ease;
    overflow: hidden;
}
ul.product_navigation > li > ul.active,
ul.product_navigation li > ul.active {
    
    max-height: 10000px;
    padding-top: 8px;
    padding-bottom: 8px;
}
ul.product_navigation > li > ul > li,
ul.product_navigation > li > ul > li > ul > li {
    color: rgba(0,0,0,0.6);
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    margin-bottom: 3px;
}
ul.product_navigation > li > ul > li:has(>ul)::after,
ul.product_navigation > li > ul > li > ul > li:has(>ul)::after {
    content: "\f345";
    display: inline-grid;
    width: 40px;
    height: 40px;
    /* background: rgba(255,0,0,0.1); */
    font-family: "dashicons";
    line-height: 16px;
    position: absolute;
    z-index: 3;
    right: 0px;
    top: 0;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    transition: all .3s ease;
    transform: rotate(0deg);
    transform-origin:center center;
}
ul.product_navigation > li > ul > li:has(>ul).active::after,
ul.product_navigation > li > ul > li > ul > li:has(>ul).active::after {
    transform: rotate(90deg);
    color: #d41f38;
}
ul.product_navigation > li > ul > li > a,
ul.product_navigation > li > ul > li > ul > li > a {
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 8px 24px;
    box-sizing: border-box;
    /* background: rgba(0,0,0,0.1); */
    transition: all .25s ease;
    position: relative;
    z-index: 2;
    border-radius: 8px;
}
ul.product_navigation span.cat-description {
    display: none !important;
}
ul.product_navigation > li > ul > li > a:hover,
ul.product_navigation > li > ul > li > ul > li > a:hover {
    color: #d41f38;
}
ul.product_navigation > li > ul > li.active > a,
ul.product_navigation > li > ul > li > ul:not(.product_list) > li.active > a {
    background: #fff1f3;
    color: #d41f38;
}

/* Products in that Sub-Taxonomy */
ul.product_navigation > li > ul > li > ul.product_list,
ul.product_navigation > li > ul > li > ul > li ul.product_list {
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 10px;
    transition: all .3s ease;
    max-height: 0;
    overflow: hidden;
}
ul.product_navigation > li > ul > li > ul.product_list.active,
ul.product_navigation > li > ul > li > ul > li > ul.product_list.active {
    max-height: 10000px;
}
ul.product_navigation > li > ul > li > ul.product_list li,
ul.product_navigation > li > ul > li > ul > li > ul.product_list li {
    color: rgba(0,0,0,0.6);
}
ul.product_navigation > li > ul > li > ul.product_list li:first-child,
ul.product_navigation > li > ul > li > ul > li > ul.product_list li:first-child {
    margin-top: 10px;
}
ul.product_navigation > li > ul > li > ul.product_list li a,
ul.product_navigation > li > ul > li > ul > li > ul.product_list li a {
    text-decoration: none;
    color: rgba(0,0,0,0.6);
    padding: 8px 24px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}
ul.product_navigation > li > ul > li > ul.product_list li.active a,
ul.product_navigation > li > ul > li > ul > li > ul.product_list li.active a {
    font-weight: bold;
    color: #d41f38;
}
ul.product_navigation > li > ul > li > ul.product_list li a:hover,
ul.product_navigation > li > ul > li > ul > li > ul.product_list li a:hover {
    color: #d41f38;
}

/* Archive Grid */
.cat_grid {
    display: inline-grid;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_grid .cat_grid_item {
    display: inline-grid;
    max-width: 100%;
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.05);
    box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.05);
}
.cat_grid .cat_grid_item::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #d21f37;
    z-index: 1;
    border-radius: 12px;
    transition: all .3s ease;
}
.cat_grid .cat_grid_item:hover::before  {
    transform: translateY(10px);
}
.cat_grid .cat_grid_item a {
    position: relative;
    z-index: 2;
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto auto auto 1fr;
    text-decoration: none;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    color: unset;
}
.cat_grid .cat_grid_item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.cat_grid .cat_grid_item img.highlight_icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cat_grid .cat_grid_item a .cat_parent {
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    /* color: #d41f38; */
    font-weight: 500;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 10px;
    padding-top: 10px;
}
.cat_grid .cat_grid_item a .cat_title {
    font-size: 24px;
    font-weight: 600;
}
.cat_grid .cat_grid_item a .cat_desc {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
}
.cat_grid .cat_grid_item a .view_details {
    display: grid;
    align-content: flex-end;
    align-self: flex-end;
    margin-top: 20px;
}
.cat_grid .cat_grid_item a .view_details > span {
    display: inline-grid; 
    width: 100%;
    background-color: #f8f8f8;
    color: #0c2651;
    padding: 8px 24px;
    border: 1px solid #0c2651;
    border-radius: 8px;
    box-sizing: border-box;
    justify-content: center;
    grid-template-columns: auto auto;
    column-gap: 10px;
    transition: all .2s ease;
}
.cat_grid .cat_grid_item:hover a .view_details > span {
    background: #0c2651;
    color: #fff;
}
.cat_grid .cat_grid_item a .view_details > span::after {
    content: "\f344";
    font-family: "dashicons";
}
.cat_grid .cat_grid_item a .cat_highlights {
    display: inline-block;
    margin-top: 20px;
}
.cat_grid .cat_grid_item a .cat_highlights .highlight {
    display: inline-grid;
    width: 100%;
    grid-template-columns: 30px 1fr;
    font-size: 14px;
}

/* Search & Filter Overrides */
.search-filter-query {
    display: block;
    margin-top: -80px;
    box-sizing: border-box;
}
.search-filter-query .search-info-order {
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.05);
    box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.05);
    display: inline-grid;
    width: 100%;
    grid-template-columns: auto 1fr;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
    margin-bottom: 0px;
}
.search-filter-query .search-info-order span.sf-info {
    box-sizing: border-box;
}
.search-filter-query .search-info-order .product_sort {
    justify-self: flex-end;
    display: inline-grid;
    grid-template-columns: auto auto;
    width: auto;
    align-items: center;
    align-content: center;
    column-gap: 10px;
    box-sizing: border-box;
}
.search-filter-component-combobox-base__listbox {
    background-color: rgba(255,255,255,0.9) !important;
}
.sf-pagination-wrap.bottom {
    
}
.sf-pagination-wrap.bottom .sf-pagination {
    display: grid;
    justify-items: center;
    justify-content: center;
    margin-top: 30px;
}
.sf-pagination-wrap.bottom .sf-pagination .wp-pagenavi {
    background: white;
    display: inline-block;
    width: auto;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
}
.sf-pagination-wrap.bottom .sf-pagination .wp-pagenavi .pages {
    display: none;
}
.sf-pagination-wrap.bottom .sf-pagination .wp-pagenavi a {
    border: 1px solid rgba(255,255,255,0.0);
}
.sf-pagination-wrap.bottom .sf-pagination .wp-pagenavi span.current {
    font-weight: normal;
    background: #071730;
    color: white;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
}
.sf-pagination-wrap.bottom .sf-pagination .wp-pagenavi span {
    border-width: 0;
}

/* Responsive */
@media screen and (max-width:1300px) {
    .wp-block-group.product_body .wp-block-columns {
        column-gap: 40px;
    }
    .cat_grid {
        column-gap: 20px;
        row-gap: 20px;
    }
}
@media screen and (max-width:1200px) {
    .cat_grid {
        grid-template-columns: 1fr 1fr;
    }

    .product_top {
        grid-template-columns: 1fr;
    }
    .product_gallery {
        max-width: 100%;
    }
}
@media screen and (max-width:996px) {
    .wp-block-group.product_body .wp-block-columns {
        grid-template-columns: 1fr;
    }
    .cat_grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width:782px) {
    .wp-block-group.product_body .wp-block-columns {
        grid-template-columns: 1fr;
    }
    .cat_grid {
        grid-template-columns: 1fr;
    }
}