html {
    position: relative;
    min-height: 100%;
}

body {
    color: #000;
    font-size: 0.9em;
    font-weight: 400;
    margin: 0;
    font-family: "Montserrat", sans-serif,Helvetica,Arial;
    margin-bottom: 60px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

a {
    color: #000 !important; 
    text-decoration: none;
}

h1 {
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    margin: 15px 0 15px 0;
}


h2{
font-size: large;
font-weight: 700;
text-transform: uppercase;
margin: 0;
text-align: center;
letter-spacing: 2px;
margin: 15px 0 15px 0;
}

h3 {
    font-size: 1.0em;
    font-weight: 700;
    text-transform: uppercase;
}

h1, h2, h3 {
    text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}

@media (min-width: 768px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0; /* Removes the small gap that can cause the menu to close */
    }
}

/*.centerx {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
}*/

.centerx-1 {
    /* Take up 80% of the available Bootstrap column space */
    width: 70%;
    /* Forces the height to perfectly match the dynamic width, keeping it a circle */
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin: 0 auto; /* Centers the circle inside the Bootstrap .col wrapper */
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.centerx {
    /* 5vw means 5% of the total screen width */
    width: 5vw;
    height: 5vw;
    /* Set safety limits so they don't get tiny on mobile or giant on desktop */
    min-width: 24px;
    min-height: 24px;
    max-width: 45px;
    max-height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; /* Added to keep icons/text centered inside */
    border: 2px solid #ffffff;
    /* Optional shadow to make them pop off the background */
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}



    .centerx:hover {
        box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
        -moz-box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
        -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
        transition: box-shadow .1s;
    }
/*
@media only screen and (max-width: 1024px) {
    .centerx {
        width: 25px;
        height: 25px;
    }
}*/

.chestnut {
    background: #AE711F;
}

.black {
    background: #000;
}

.chocolate {
    background: #6c4c3d;
}

.sand {
    background: #f1e1c9;
}

.grey {
    background: #747474;
}

.pink {
    background: #fdcec8;
}

.navy {
    background: #36548a;
}

.plum {
    background: #773e5b;
}

.purple {
    background: #773e5b;
}

.khaki {
    background: #425444;
}

.orchid {
    background: #e29cd2;
}

.bordeaux {
    background: #5C0120;
}

.olive {
    background: #e4e3c6;
}

.slate_blue {
    background: #7c82a4;
}

.lilac {
    background: #b26dc1;
}

.mauve {
    background: #bb7f8b;
}

.accordion-button {
    flex-direction: row-reverse; /* Reverses the text/icon order */
    justify-content: flex-end; /* Keeps everything aligned to the left */
    padding-left: 0px;
    padding-bottom: 5px;
}

    .accordion-button::after {
        margin-left: 0;
        margin-right: var(--bs-accordion-btn-icon-width, 1.25rem);
    }
    .accordion-button:not(.collapsed) {
        background-color: transparent; /* Removes the default light blue/gray background */
        color: #000; /* Keeps or changes the expanded text color (Bootstrap primary blue here) */
        box-shadow: none; /* Removes the default inner blue shadow tint */
    }

.accordion-item {
    border: 1px solid #dee2e6; /* Default gray border for collapsed items */
    transition: border-color 0.2s ease-in-out; /* Smooth transition when clicking */
   
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
        border-color: #dee2e6; /* Your custom highlight color (e.g., active blue) */
 }



    .accordion-button:focus {
        border-color: #000;
        box-shadow: none;
        /*box-shadow: 0 0 0 0.25rem rgba(222, 226, 230, 0.25);  Subtle outer glow matching your highlight */
    }

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #dee2e6;
}
    /*catalog*/
    .catalog-list .catalog-item {
    position: relative;
    text-align: center;
    border: 1px solid #eee !important;
    border-radius: 6px;
    margin: 4px;
    padding: 2px;
    /*  margin: 2px 4px 15px 4px;
    float: left;
    padding-right: 0;
    width: 98%;*/
}

    .catalog-list .catalog-item .content-overlay {
        /*background: #6c757d;*/
        background: rgba(0, 0, 0, 0.1);
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        z-index: auto;
        -webkit-transition: all .4s ease-in-out 0s;
        -moz-transition: all .4s ease-in-out 0s;
        transition: all .4s ease-in-out 0s;
    }

    .catalog-list .catalog-item:hover .content-overlay {
        opacity: .1;
    }

    .catalog-list .catalog-item:hover {
        border: 1px solid #BBB;
        box-shadow: 0 0 3px #d1d1d1;
        -moz-box-shadow: 0 0 35px #d1d1d1;
        -webkit-box-shadow: 0 0 3px #d1d1d1;
    }

.catalog-list.last {
    margin-right: 0 !important;
}

.catalog-list .prod-image {
    position: relative;
    margin: 18px 0 0 0;
    display: inline-block;
}

.catalog-list .prod-image-sm {
    position: relative;
    margin: 5px 0 0 0;
    display: inline-block;
}

.catalog-list .catalog-name, .shoppingcart .catalog-name {
    font-weight: 600;
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin-top: 2px;
    height: 2em;
    line-height: 1.2;
    padding: 0 3px 0 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,.2);
}

@media only screen and (min-width: 1200px) {
    .catalog-list .catalog-name {
        /*font-size: +120%;*/
    }
}

.catalog-list a {
    color: #444444;
    text-decoration: none;
}

.catalog-list a:hover {
        text-decoration: none;
        color: #000;
}

.catalog-list .item-price {
    position: relative;
    margin-top: 5px;
    display: inline-block;
}

.catalog-list .item-price-sm {
    position: relative;
    margin-top: 0;
}

.catalog-list .catalog-price, .shoppingcart .catalog-price {
    text-align: right;
    /*font-size: 140%;*/
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1.2rem);
    color: #a10200;
    font-weight: bold;
    display: inline-block;
}

.catalog-list .catalog-price-sm {
    text-align: right;
    font-size: 16px;
    color: #444444;
    font-weight: bold;
}

.catalog-list .catalog-priceold, .shoppingcart .catalog-priceold {
    text-align: left;
    color: #5c5c5c;
    font-weight: normal;
    /*font-size: 100%;*/
    font-size: clamp(0.7rem, 2vw + 0.3rem, 1.0rem);
    text-decoration: line-through;
    display: inline;
    margin-right: 5px;
    display: inline-block;
}

.catalog-list .save-percent {
    position: relative;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

.catalog-list .save-percent-sm {
    position: relative;
    text-align: center;
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
}

.product-thumb .aumade {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 10;
    opacity: .8;
    width: unset;
}

.catalog-item .box-label .offer {
    visibility: hidden;
}

.text-xs {
    font-size: 0.75rem; /* Approximately 12px */
}

.text-xxs {
    font-size: 0.65rem; /* Approximately 10px */
}

/* Overrides focus states for standard inputs, select menus, and textareas */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: #fff;/* Resets to default Bootstrap light gray border */
    box-shadow: none; /* Completely removes the colored glow effect */
}

.form-control:focus {
    border-color: #6c757d; /* Shakes off the blue for a neutral dark gray border */
    box-shadow: none;
}

.action-btn {
    width: 100%;
    color: #000;
    background: #fff;
    font-weight: bold;
    border: 2px solid #000;
    text-transform: uppercase;
    padding: 7px 15px;
    font-size: medium;
    text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}

    .action-btn:hover, .action-btn a:hover {
        color: #fff !important;
        background: #000;
    }


.icon-star {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='%23836b47' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}


.circle {
    max-width: 20px;
    padding: 12px;
    border-radius: 50%;
    -moz-box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
}

.circle::before {
     content: '';
      display: block;
      padding-bottom: 100%;
}

.circle:hover {
  box-shadow: 0 0 4px 0 rgb(0,0,0);
  transition: box-shadow .1s;
}

@media (max-width: 1024px) {
    .circle {
        padding: 6px;
    }
}

