.qty-up,
.qty-down {
    min-width: 22px;
    line-height: 1;
    font-weight: 600;
}

/* Address card selection */
.address-card {
    transition: border-color .15s, box-shadow .15s;
}
.address-option-label input:checked + .address-card,
.address-card.selected-address {
    border-color: #000 !important;
    box-shadow: 0 0 0 2px #00000020;
}
.address-option-label:hover .address-card {
    border-color: #666;
}
.check-icon {
    font-size: 1.1rem;
}

/* Product list filters */
.clear-filters-btn {
    font-size: 10px;
    padding: 1px 6px;
    line-height: 1;
    width: 20%;
}

.colormain .bg-white label {
}

.artwork-card.selected-artwork {
    box-shadow: 0 0 0 2px #000 !important;
}
.artwork-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
 .loader {
   width: 20px;
   margin: auto;
   aspect-ratio: 1;
   border-radius: 50%;
   border: 4px solid lightblue;
   border-right-color: white;
   animation: l2 1s infinite linear;
 }

 @keyframes l2 {
   to {
     transform: rotate(1turn)
   }
 } 

 /* Modal styling */
.faq-modal {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

/* Answer container */
.faq-answer-wrapper {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
}

/* Optional hover animation */
.faq-modal {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pointer {
  cursor: pointer;
}

#contactForm .error-message {
    position: absolute;
    bottom: 9px;
    left: 14px;
    font-size: 10px;
} 
.faq-answer-wrapper {
    max-height: 300px;   /* Adjust height as needed */
    overflow-y: auto;
    padding-right: 5px;  /* Prevent text from hiding under scrollbar */
}

/* ── Core Colors Heading ─────────────────────────────── */
.core-colors-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #111;
}

/* ── Color circles grid ──────────────────────────────── */
.color-circles-grid {
    display: grid;
    grid-template-columns: repeat(6, 30px);
    gap: 0px;
    padding: 4px 15px;
    overflow-y: auto;
    justify-content: space-between;
    /* margin: 5px 0 !important; */
    margin-bottom: 10px;
}
.color-circle-wrap {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center; margin: 3px 0;
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    border: 1px solid #eee;
    outline: 1px solid transparent;
    transition: outline-color .15s, transform .15s, border-color .15s;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.15); */
}

.color-circle:hover {
    transform: scale(1.12);
    border-color: #666;
    outline-color: #999;
}

.color-radio:checked + .color-circle {
    border-color: #fff;
    outline-color: #111;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
}

.color-circle-wrap.extra-circle {
    display: none !important;
}

/* ── Select2 custom color dot in dropdown ────────────── */
.select2-results__option .color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    border: 1px solid #ccc;
    vertical-align: middle;
}
.select2-container--default .select2-selection--single {
    border-color: #ccc;
    border-radius: 4px;
    height: 34px;
    padding: 4px 8px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
    color: #555;
    line-height: 24px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px;
}
.select2-dropdown {
    font-size: 12px;
}
.product-list .box img {
   height: 200px; object-fit: cover; width: 100%;
}
.accordion-body .select2-container {
        width: 90% !important;
    margin: 0 auto;
}

#mens-size-section #womens-size-section {
    margin: 10px 0;
}


.experiance-page.light-gray.new_padding .experiance_content{
    padding-top: 125px;
    padding-bottom: 80px;

    &::before{
        background-position: bottom;
    }
    p{
        color: #fff;
    }
}

#accountDropdownWrapper {
    position: relative;
}

#accountDropdownToggle {
    display: inline-flex;
    align-items: center;
}

header .infos ul li:last-child a {
    padding-right: 0;
}

#accountDropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 160px;
    padding: 8px 0;
    z-index: 9999;
}

#accountDropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

#accountDropdown a:hover {
    background: #f8f8f8;
}