* {
    margin:0;
    padding:0;
    font-family: Tahoma, Verdana, sans-serif;
    color: #030027;
    box-sizing: border-box;
}


html {
    font-size: 100%;
    background-color: #696D61;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    padding:0.75rem;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

h1 {
    margin-bottom:1rem;
}

hr {
    margin:.75rem 0;
}

div#logo {
    order: 1;
    max-width:40%;
    font-size:3rem;
    font-weight: bold;
    color:#DCE0D9;
}
div#logo img{
    width: 100%;
}
div#logo a {
    color:#DCE0D9;
    text-decoration: none;
}

div#searchbar_container {
    order: 3;
    width: 100%;
}
div#searchbar {
    cursor: text;
    user-select: none;
    margin-top: 0.75rem;
    padding:0.5rem;
    text-align:center;
    border-radius: 1rem;
    background-color: #DCE0D9;
}

#menubar {
    order: 2;
    gap:0.5rem;
    display: inline-flex;
    align-items: center;
}

main {
    width: 100%;
    background-color: #fff;
}
main#checkout {
    background-color: revert;
    background-color: revert;
    padding: 1rem 0;
}
main#checkout h1 {
        text-align: center;
        color: #DCE0D9;
}
#checkout_container {
    padding:1rem;
    margin:.5rem 0;    
    background-color: #fff;
}
#checkout_confirm_container {
    padding:1rem;
    margin:.5rem 0;    
    background-color: #fff;
}
#checkout_container input:not([type="radio"]) {
    font-size: 1.2em;
    width: 100%;
    text-align: center;
    padding: .25rem;
}
#checkout_container #shipping_address input {
    text-align: left;
}
#checkout_container #business_address input {
    text-align: left;
}

#checkout_cart_details_header {
    cursor: pointer;
    margin: .25rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#checkout_cart_details_content {
    height: 0;
    transition: height 0.3s ease; /* Smooth height transition */
}
.checkout_cart_product_line {
    display: grid;
    grid-template-columns: .5fr 5fr 1fr;
    font-size: 0.75em;
    text-align: left;
    align-items: center;
}
.checkout_cart_product_line img {
    width:100%;
}
.checkout_cart_product_line p {
    margin:.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.1;
}
.checkout_confirm_product_line {
    margin: .5rem 0;
    display: grid;
    grid-template-columns: .5fr .5fr 2fr 1fr;
    text-align: left;
    align-items: center;
}
.checkout_confirm_product_line img {
    width:100%;
    max-width: 75px;
}
.checkout_confirm_product_line p {
    margin:.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.1;
}
#checkout_container h3 {
    margin: .5rem 0;
}

#checkout_container #zipin {

}
#checkout_content {
    border-top: .1px dotted #696D61;
    margin-top: .5rem;
}
#checkout_content .shipping_button {
    display: flex;
    text-align: left;
    border: .15rem solid #696D61;
    margin: 1rem 0;
    cursor: pointer;
    user-select: none;
}
#checkout_content .shipping_button p {
    margin:.25rem 0;
}
#checkout_content .shipping_button .details-text,  #checkout_content .shipping_button .details-button {
    display: none;
}


main p {
    margin:1rem 0;
    line-height: 1.5rem;
}
#account_menu li {    
    margin: 1rem 0;
    list-style-type: none;
}
#account_menu li a {
    display: block;
    width:100%;
    padding: .75rem;
    border-radius: .5rem;
    background-color: #DCE0D9;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-align: center;
}
.account_order {
    margin: 1rem 0;
    border: .15rem solid #696D61;
    border-radius: .45rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}
.account_order_header {
    background-color: #DCE0D9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: .75rem;
}
.account_order_footer {
    display: flex;
    flex-direction: row;
    padding:.75rem;
    justify-content: space-between;
    align-items: center;
}
.account_order_button {
    display: block;
    padding: .75rem;
    background-color: #DCE0D9;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-align: center;
}
.account_order_preview_data {
    padding: 0 .25rem;
    margin-top: .75rem;
}
.account_order_preview_data_line {
    margin: 0 .5rem;
    display: grid;
    grid-template-columns: 1.5rem auto auto;
    text-align: left;
    font-size: 0.8em; 
}
.account_order_preview_data_line p {
    display: inline-block;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#order_detail li {    
    margin: 1rem 0;
    list-style-type: none;
}
.account_order_detail_data_line {
    margin: .5rem 0;
    display: grid;
    gap: .25rem;
    grid-template-columns: 1.5rem 3.25rem auto auto;
    font-size: 0.8em;
    align-items: center;
}
.account_order_detail_data_line p {
    line-height: 1rem;
    display: inline-block;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.account_order_detail_data_line img {
    width: 3rem;
    height: 3rem;
}
.account_order_detail_data_line p.right {
    text-align: right;
}
.account_order_detail_data_line span.sku {
    font-size: 0.8em;
}
#order_detail_totals {
    padding-left: 1.75rem;
    border-top: .1rem dashed #696D61;
    padding-top: .5rem;
}
.account_order_detail_totals_line {    
    display: grid;
    grid-template-columns: auto auto;
    gap: .25rem;
    font-size: 0.8em;
    align-items: center;
}
.account_order_detail_totals_line p {
    line-height: 1rem;
    display: inline-block;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.account_order_detail_totals_line p.right {
    text-align: right;
}
.account_order_detail_totals_line.bold {
    padding-top: .5rem;
    font-weight: bold;
    font-size: 1rem;
}
#order_detail_products > a {
    text-decoration: none;
}
#order_detail_products > a p.product_name {
    text-decoration-line: underline;
    text-decoration-style: dotted ;
    text-decoration-color: #2d0a3a;
}
#order_detail_products > a span.sku {
    text-decoration:none;
    display: inline-block;
}
#product_information img.loading {
     animation: skeleton-loading .5s linear infinite alternate;
}
#account_order_details {
    margin: 0 auto;
    padding: 1rem;
    max-width:1200px;
}
#product_images {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
#product_images div {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    display: inline-block;
    position: relative;
}
#product_images div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 1rem;
}
#product_images div.more {
    margin-left: 1rem;
}
#product_information {
    position:relative;
    padding: 1rem;
}
#product_information #product_title {
    word-wrap: break-word;
}
#product_information #price_package {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    background-color: #DCE0D9;
    margin-top: 1rem; 
    margin-left: -1rem;
    margin-right: -1rem;
}
#product_information #price_package div {
    padding:.75rem;
}
#pp_purchase_button {
    width:100%;
}
#pp_purchase_button button {
    cursor: pointer;
    padding: 1rem;
    font-size: 1.2rem;
    display: block;
    border-radius: 1rem;
    background-color: #2d0a3a;
    color: #fff;
    width: 100%;
}
#pp_price {
    font-size: 2rem;
    font-weight: bold;
}
#product_information #stock_info {
    margin-left: -1rem;
    margin-right: -1rem;
    border-top: .25rem dotted #2d0a3a;
    padding:1rem;
    background-color: #DCE0D9;
    margin-bottom: 1rem;
}
#product_information #special_details {
    background-color: #dce0d9;
    margin: 0 -1rem;
    padding: 1rem;
    text-align: center;
}

.toggle-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease; /* Smooth height transition */
}
.toggle-header {
    cursor: pointer; /* Show pointer to indicate clickable headers */
}
.toggle-content.open {
    height: auto; /* Auto height when content is open */
}
.toggle-header::after {
    content: '›'; /* Default collapsed icon */
    float: right;
    transition: transform 0.3s ease;
}
.toggle-header.open::after {
    transform: rotate(90deg); /* Rotate when open */
}

#product_information h2 {
    margin-bottom:1rem;
}
#product_information h3 {
    margin: 1rem 0;
}

#spesifikasjoner_content .spec_group {
    display: grid;
    grid-template-columns: 50% 1fr; /* changed from 50vw 1fr */
    gap: .5rem;
    align-items: center;
}

#order_detail_history {
    border-left: .25rem solid #2d0a3a;
    padding-left: .5rem;
}
.order_detail_history_part {
    border-left: .25rem dotted #696D61;
    padding-left: .5rem;
}
.order_detail_history_part .comment {
    line-height: initial;
    font-size:0.8em;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


footer {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

footer div#footer_accent {
    background-color: #2d0a3a;
    width: 100%;
    flex-grow: 1;
    padding:1rem;
}
footer p {
    margin-bottom: 1rem;
    color:#fff;
}
footer div#footer_secondary {
    width:100vw;
    background-color: #DCE0D9;
    padding:2rem;
}

#menubar div {
    color:transparent;
    text-shadow: #DCE0D9 0 0 0, 0 0;
    text-align: center;
    width:3rem;
    cursor: pointer;
    user-select: none;
}
#menubar #menu_open {
    font-size: 2.5rem;
}
#menubar #cart_open {
    font-size: 2rem;
}
#menubar #profile_open {
    font-size: 2rem;
}
#menubar #profile_open a {
    text-decoration: none;
    color:inherit;
}

@keyframes slide-left {
    from  {left:-200px;}
    to {left:0px;}
}
@keyframes slide-right {
    from  {right:-200px;}
    to {right:0px;}
}

#menu_underlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index:10;
    background-color: #000;
    opacity: 0.5;
}
aside#menu {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index:11;
    background-color: #DCE0D9;
    padding:2rem;
    animation: 0.25s linear slide-left;
    overflow: auto;
}
aside#menu a.category {
    font-weight: bold;
    user-select: initial;
    text-decoration: none;
    line-height: 2.25rem;
    font-size:1.25rem;
}
aside#menu a.category:hover {
    text-decoration: underline;
}
aside#menu .subcategories {
    display: none;
}

aside#menu #menu_close {
    cursor: pointer;
    user-select: none;
    font-size: 1.75rem;
    position: absolute;
    top:1rem;
    right:1rem;
}

aside#cart {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index:11;
    background-color: #fff;
    padding:1rem 2rem;
    animation: 0.25s linear slide-right;
    overflow: auto;
    flex-direction: column;
    max-width: 75vw;
}
#sidecart_product_list {
    display: flex;
    flex-direction: column;
}
#sidecart_product_list .sidecart_product_line {
    display: grid;
    margin: .5rem auto;
    grid-template-columns: 1fr 3fr;
    gap: .25rem;
}
#sidecart_product_list .product_data_line {
    display: grid;
    margin: .5rem auto;
    padding-bottom: .5rem;
    grid-template-columns: 1fr 1fr;
    gap: .25rem;
    border-bottom: 1px dotted #696D61;
    width:100%;
}

.cart_product_line {
    display: grid;
    grid-template-columns: .5fr .5fr 3fr 1fr 1fr 2.5rem;
    grid-gap:1rem;
    align-items:center;
    padding-top: 1rem;
    min-width: 800px;
}
#cart_subtotals {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
#cart_subtotals #subtotal, #cart_subtotals #tax {
    font-size: 0.8em;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
#cart_subtotals #sum {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    font-weight: bold;
}

aside#search {
    display: none;
    flex-direction: column;
    position: absolute;
    top:0;
    z-index:11;
    width:100vw;
    background-color:#696D61;
}
aside#search #search_form {
    display: flex;
    width: 100%;
}
aside#search #search_input {
    border: none;
    font-size: 1.25rem;
    border-radius: 2rem;
    background-color: #DCE0D9;
    padding:0.5rem 1.25rem;
    width:90vw;
    margin:1rem auto;
    align-self: center;
}
aside#search #search_results_container {
    background-color: #fff;
}
aside#search #search_results {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
aside#search #search_results .product_xhr_search {
    display: grid;
    grid-template-columns: 75px auto 75px;
    height:3rem;
    flex-direction: column;
}
aside#search #search_results .product_image img {
    width:3rem;
}
aside#search #search_results .product_xhr_search .product_details {
    overflow: hidden;
    display:flex;
    flex-direction: column;
    justify-content: center;
}
aside#search #search_results .product_xhr_search .product_details p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
aside#search #search_results .product_xhr_search .product_details p.product_name {
    font-weight: bold;
}
aside#search #search_results .product_xhr_search p.product_price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
aside#search #advanced_link {
    margin: 1rem;
    text-align: center;
    display: block;
}

.cart_special_price_container {
    text-align: right;
    display: flex;
    flex-direction: column;
}
.cart_special_price_container .special, #sidecart_product_list .special, .plp_price_package .special {
    font-weight: bold;
}
.cart_special_price_container .regular, #sidecart_product_list .regular, #pp_price .regular, .plp_price_package .regular {
    color:#555;
    font-size:0.8em;
    text-decoration: line-through;
}
.plp_price_package .regular {
    float: right;
}
.plp_price_package .add_to_cart {
    font-size:1.1em;
    border:0;
    width:2.75rem;
    height:2.75rem;
    background-color: #2d0a3a;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    text-shadow: #DCE0D9 0 0 0, 0 0;
    text-align:center;
}
.plp_attached_filters {
    display: block;
    position: absolute;
    bottom: 0px;
}
.plp_attached_filters span {
    display: inline-block;
    padding: .2rem .2rem;
    margin: .15rem;
    font-size: 0.8em;
    border-radius: .5rem;
    background-color: #dce0d9;
}
#toast {
    display: none;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    top:0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index:200;
    width:95vw;
    height: 3rem;
    padding:1rem 2rem;
    background-color: rgba(0,0,0,0.8);
    border-radius: 2rem;
}
#toast span, #toast a {
    color:#fff;
}
#toast .close {
    float: right;
    font-size: 1.5em;
    cursor: pointer;
}

#footer_links {
    margin: 1rem 0;
}
#footer_links h3 {
    color:#fff;
}
#footer_links li {
    margin: .75rem 0;
    list-style-type: none;
}
#footer_links li a {
    text-decoration: underline dotted #ccc;
    color:#ccc;
    font-size: .9rem;
}
#account_login {
    width:100%;
    display: flex;
    flex-direction: column;
    gap:.75rem;
}
#account_login input {
    padding: .5rem;
}
/*
#account_login input[type="submit"] {
    -webkit-appearance: none;
    background-color: #DCE0D9;
    border: 0;
    border-radius: 1rem;
}
#login_message {
    display: none;
    text-align: center;
    border: 1px solid red;
    border-radius: 1rem;
    padding: .3rem;
}
*/
.sidecart_product_line {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sidecart_product_line input {
    width:3.5rem;
    padding: .5rem;
}

.shipping_address {
    border-left: .25rem dotted #696D61;
    padding-left: .5rem;    
}

.product_list_container {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
}

.product_card_plp {
    overflow: hidden;
    padding-bottom: 1rem;
    border-bottom: 1px solid #aaa;
}
.product_card_plp p {
    margin: 0;
}
.product_card_plp a {
    text-decoration: none;
}
.product_card_plp p.product_link {
    font-weight: bold;
    font-size: 0.9em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product_card_plp img {
    width:100%;
}

#filter_container {
    display: none;
    background-color: #DCE0D9;
    margin-top:-1rem;
    margin-bottom: 1rem;
    padding:1rem;
}
#filter_container div:first-child {
    margin-top: -1.5rem;
}
#filter_container input {
    width:1rem;
    height:1rem;
    cursor: pointer;
}
#filter_container label {
    padding-left: .75rem;
    width:100%;
    cursor: pointer;
    user-select: none;
}
#filter_container ul {
    list-style: none;
}
#filter_container li {
    margin:.5rem 0;
}
.filter_header {
    font-weight: bold;
    margin-bottom: 0;
}
#filter_header {
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    background-color: #DCE0D9;
}
#filter_header p {
    display: inline-block;
    margin: 0;
}
.minisearch_row {
    display: grid;
    grid-template-columns: 4rem auto 5rem;
    text-decoration: none;
    align-items: center;
}
.minisearch_row .product_name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.minisearch_row .product_price {
    text-align: right;
}
.minisearch_row img {
    height:50px;
}

#sort_container {
    float:right;
    margin-top: .5rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.main_flow_button {
    border-radius: 2rem;
    border:none;
    text-decoration: none;
    padding:1rem;
    margin-bottom: 1rem; 
    display: block;
    background-color: #2d0a3a;
    color:#fff;
    
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 4px;
    border: 4px solid #000;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000 transparent transparent transparent;
}

.spinner div:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner div:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes spin {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}

.desktop_only {
    display: none;
}

/* Return System Styles */
.returns-container {
    padding: 1rem; 
    max-width: 800px;
    margin: 0 auto;
}

.return-form-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem auto;
    max-width: 400px; /* Make the form narrower */
}

@media (min-width: 768px) {
    .return-form-container {
        max-width: 600px; /* Adjust width for desktop mode */
    }
}

.return-product-list {
    margin: 1.5rem 0;
}

.return-product-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 1rem;
    padding: 1rem;
    transition: all 0.2s ease;
}

.return-product-item:hover {
    border-color: #2d0a3a;
    box-shadow: 0 2px 8px rgba(45, 10, 58, 0.1);
}

.return-product-select {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.return-product-select input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.return-product-select label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    flex: 1;
}

.return-product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
}

.return-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.return-product-info strong {
    color: #2d0a3a;
    font-size: 1.1em;
}

.return-product-info .sku {
    color: #666;
    font-size: 0.9em;
}

.return-product-info .price {
    font-weight: bold;
    color: #2d0a3a;
}

.return-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
}

.return-details select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 1em;
    color: #333;
}

.return-details textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 1em;
    font-family: inherit;
}

.return-submit-button {
    background-color: #2d0a3a;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1.1em;
    transition: background-color 0.2s ease;
}

.return-submit-button:hover {
    background-color: #3f1554;
}

.return-error-message {
    background-color: #fff0f0;
    border: 1px solid #ffcdd2;
    color: #d32f2f;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
#checkout_container #show_more_shipping_methods {
    display: block;
    width: 50%;
    margin: 0 auto;
    background-color: #DCE0D9;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
}

#load_more_container {
    display:flex;
    width:100%;
    justify-content:center;
    padding:1rem;
}

@media (min-width: 768px) {

    .return-product-select {
        flex-direction: column;
        align-items: flex-start;
    }
    .return-product-select label {
        margin-top: 0.5rem;
    }
    .return-product-thumbnail {
        width: 60px;
        height: 60px;
    }

    header {
        margin: 0 auto;
        width:90vw;
        max-width: 100rem;
        flex-wrap: nowrap;
        padding: 0.75rem 0;
    }
    div#searchbar_container {
        margin-top: 0;
        order: 2;
    }
    div#searchbar {
        margin: 0.75rem 0 0 1.5rem;
        padding:0.5rem;
        width:20rem;
        text-align:left;
    }
    #menubar {
        align-self: center;
        order: 3;
    }
    main {
        width:90vw;
        max-width: 100rem;
        margin: 0 auto;
        clip-path: inset(0 round 1rem);
    }
    main#checkout {
        max-width: 60rem;
    }    
    footer {
        margin-top: 2rem;
    }
    #footer_text_container {
        margin: 0 auto;
        width:90vw;
        max-width: 100rem;
        flex-wrap: nowrap;
        padding: 0.75rem 0;
    }
    aside#search #search_results {
        margin: 0 5vw;

    }
    .product_list_container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    #checkout_container {
        display: flex;
        flex-direction: row-reverse;
        gap: 1rem;
        clip-path: inset(0 round 1rem);
        padding:0;

    }
    #checkout_container #checkout_content {
        flex-grow: 1;
        border:none;
        margin-top: 0;
        padding: 1rem 2rem;
        background-color: #DCE0D9;
    }
    #checkout_container #show_more_shipping_methods {
        background-color: #fff;
    }
    #checkout_container #checkout_cart_details {
        min-width: 33%;
        width: 33%;
        max-width: 50%;
        padding: 1rem;

    }
    #checkout_container #checkout_cart_details_header {
        display: none;
    }
    #checkout_container #checkout_cart_details_content {
        height: initial;
    }
    #checkout_container #checkout_cart_details_content .checkout_cart_product_line {
        font-size: initial;
    }
    .shipping_button {
        background-color: #fff;
    }
    .address_submit {
        background-color: #2d0a3a;
        color: #fff;
        border-radius: 2rem;
        text-align: center;
        padding: 1rem;
        border: 0;
    }
    #checkout_confirm_container {
        padding:0;
        display: flex;
        gap: 2rem;
        clip-path: inset(0 round 1rem);
    }
    .desktop_only {
        display: block;
        margin:1rem 0;
    }
    #confirm_summary {
        padding:1rem;
        width: 100%;
    }
    #desktop_totals {
        background-color: #DCE0D9;
        padding: 1rem;
        min-width: 33%;
        max-width: 33%;
        display: flex;
        flex-direction: column;
        align-content: space-evenly;
        justify-content: space-between;
    }

}
@media (min-width: 992px) {
    #load_more_container {
        position:absolute;
        left: 1rem;
        bottom: 1rem;
        width: initial;
        border: 1px solid #2d0a3a;
        padding: 0;
    }

    aside#cart {
        max-width: 33vw;
    }
    #pip_desktop_abovefold {
        display: flex;
        justify-content: space-between;
    }
    #pip_desktop_belowfold {
        border-top: 2px dotted #2d0a3a;
        padding: 1rem;
    }
    #product_intro {
        min-width: 33%;
        max-width: 33%;
        background-color: #DCE0D9;
        padding:1rem;
    }
    #product_intro h1 {
        font-size: 1.5em;
    }
    #product_images {
        width:100%;
    }
    #product_information {
        padding: 0;
    }
    #product_information #price_package, #product_information #stock_info {
        background-color: initial;
        margin:0;
    }
    #product_information #price_package {
        display: flex;
        flex-direction: column;
    }
    #product_information #price_package div {
        padding: 1rem 0;
    }
    #pp_price {
        align-self: flex-start;
    }
    #product_information #stock_info {
        border-top: none;
        padding:0;
    }

    #plp_container {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        /* clip-path: inset(0 round 1rem); */
    }
    .product_list_container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        width:75%;
    }
    #filter_header {
        display:none;
    }
    #filter_container {
        padding-top:4rem;
        display: block;
        margin-top: 0;
        margin-bottom: -1rem;
        width:25%;
    }
    .checkout_confirm_product_line {
        margin: .5rem 0;
        display: grid;
        grid-template-columns: .25fr .25fr 2fr 1fr;
        text-align: left;
        align-items: center;
    }
    #sort_container {
        position: absolute;
        margin-top:1rem;
    }
}

/* ...existing code... */

.return-quantity {
    margin-bottom: 1rem;
}

.return-quantity label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.return-quantity select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    color: #333;
}

/* ...existing code... */

/* ...existing code... */

.return-success-message {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.return-next-steps {
    margin-top: 2rem;
}

.return-next-steps h2 {
    margin-bottom: 1rem;
    color: #2d0a3a;
}

.return-next-steps ol {
    margin-left: 1.5rem;
    line-height: 1.6;
}

.return-next-steps li {
    margin-bottom: 0.5rem;
}

/* ...existing code... */

/* ...existing code... */

.return-opened {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.return-opened label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.return-opened input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.return-opened-note {
    margin-top: 0.5rem !important;
    font-size: 0.9em;
    color: #666;
}

/* ...existing code... */

/* ...existing code... */