/* Product Detail Page Design Changes */
/* Default styles for .switch-label (unselected state) */
.swatch-attribute {
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio-swatch {
    display: flex;
    align-items: center;
    padding: 8px 0px;
}

.swatch-attribute-label {
    font-size: 14px !important;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    min-width: 140px;
    flex-shrink: 0;
    padding: 0px !important;
    line-height: 50px !important;
}

/* Container for option switches */
.custom-option-switches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 2px 8px 8px;
    align-items: center;
    flex: 1;
}

/* Switch label styling */
.switch-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.47);
    background-color: #f9f9f9;
    border: #e0e0e0 !important;
    color: #1e1e1e !important;
    transition: background-color 0.3s ease;
    position: relative;
    background-clip: padding-box;
    border-radius: 50px;
    padding: 2px;
    margin: 0;
}

/* Hide radio inputs */
.switch-radio {
    display: none;
}

/* Default styles for .switch-button (unselected state) */
.switch-button {
    position: relative;
    z-index: 1;
    padding: 4px 12px;
    line-height: 16px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-align: center;
    min-width: 60px;
}

/* Gradient text for checked .switch-button */
.switch-radio:checked+.switch-button {
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%);
    background-color: transparent;
    border: none;
    border-radius: 50px;
}

/* Gradient background for checked .switch-label */
.switch-label:has(.switch-radio:checked) {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.3) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%);
    border: 1px solid transparent;
    box-shadow: none;
    border-radius: 50px;
    position: relative;
}

/* Gradient border for checked .switch-label */
.switch-label:has(.switch-radio:checked)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    border-radius: 50px;
    padding: 1px;
    box-sizing: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Hover effect for .switch-label (when not checked) */
.switch-label:not(:has(.switch-radio:checked)):hover {
    border: 1px solid transparent;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.1) 11.43%,
            rgba(112, 0, 254, 0.1) 61.27%);
    box-shadow: none;
    color: #1e1e1e;
}

.switch-label:not(:has(.switch-radio:checked)):hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    border-radius: 50px;
    padding: 1px;
    box-sizing: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Ensure hover doesn't override selected state */
.switch-label:has(.switch-radio:checked):hover {
    border: 1px solid transparent;
}

/* Selected styles (fallback for non-checked .selected state) */
.switch-label.text.selected {
    background-color: rgba(61, 81, 103, 1);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(61, 81, 103, 1);
    border-radius: 50px;
}

/* Ensure .selected state doesn't override gradients when checked */
.switch-label.text.selected:has(.switch-radio:checked) {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.3) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%);
    border: 1px solid transparent;
    box-shadow: none;
    border-radius: 50px;
}

/* Selected and checked .switch-button */
.switch-label.text.selected .switch-radio:checked+.switch-button {
    background-color: transparent;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%);
    border: none;
    border-radius: 50px;
}

/* Disabled styles */
.disabled-option {
    position: relative;
    pointer-events: none;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.24);
    color: rgba(119, 119, 119, 0.46) !important;
    border-radius: 50px;
}

/* Default swatch option styles (unselected state) */
.swatch-opt .swatch-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.47);
    background-color: #f9f9f9;
    color: #1e1e1e;
    transition: all 0.3s ease;
    position: relative;
    background-clip: padding-box;
    border-radius: 50px;
    padding: 2px;
}

/* Text swatch options */
.swatch-opt .swatch-option.text {
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.47);
    background-color: #f9f9f9;
    border-radius: 50px;
    padding: 8px 16px;
    line-height: 16px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0 !important;
}

/* Color swatch options */
.swatch-opt .swatch-option.color {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    border: 2px solid #f0f0f0;
}

/* Image swatch options */
.swatch-opt .swatch-option.image {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    padding: 2px;
    border: 2px solid #f0f0f0;
}

/* Selected state for all swatch types */
.swatch-opt .swatch-option.selected {
    border: 1px solid transparent !important;
    box-shadow: none !important;
    position: relative;
}

/* Gradient background for selected text swatches */
.swatch-opt .swatch-option.text.selected:not(.color) {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.3) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%) !important;
    background-color: transparent !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-image: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
}

/* Fix for text swatch background - separate background and text gradients */
.swatch-opt .swatch-option.text.selected:not(.color)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.3) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%);
    border-radius: inherit;
}

/* Gradient background for selected color swatches */
.swatch-opt .swatch-option.color.selected:not(.color) {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.3) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%) !important;
    background-color: transparent !important;
}

/* Gradient background for selected image swatches */
.swatch-opt .swatch-option.image.selected:not(.color) {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.3) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%) !important;
    background-color: transparent !important;
}

/* Gradient border for selected swatch options */
.swatch-opt .swatch-option.selected:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    border-radius: inherit;
    padding: 1px;
    box-sizing: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Special border radius for color swatches */
.swatch-opt .swatch-option.color.selected::after {
    border-radius: 50%;
}

/* Special border radius for image swatches */
.swatch-opt .swatch-option.image.selected::after {
    border-radius: 8px;
}

/* Ensure content is visible above the gradient border */
.swatch-opt .swatch-option.selected *,
.swatch-opt .swatch-option.selected .swatch-option-link-layered {
    position: relative;
    z-index: 2;
}

/* Hover effect for swatch options (when not selected) */
.swatch-opt .swatch-option:not(.selected, .color):hover {
    border: 1px solid transparent !important;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.1) 11.43%,
            rgba(112, 0, 254, 0.1) 61.27%) !important;
    box-shadow: none !important;
    color: #1e1e1e !important;
    outline: none !important;
}

/* Remove any default outline on focus/hover */
.swatch-opt .swatch-option:hover,
.swatch-opt .swatch-option:focus,
.swatch-opt .swatch-option:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Gradient border for hover state */
.swatch-opt .swatch-option:not(.selected):hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    border-radius: inherit;
    padding: 1px;
    box-sizing: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Special border radius for color swatches on hover */
.swatch-opt .swatch-option.color:not(.selected, .color):hover::before {
    border-radius: 50%;
}

/* Special border radius for image swatches on hover */
.swatch-opt .swatch-option.image:not(.selected, .color):hover::before {
    border-radius: 8px;
}

/* Ensure hover content is visible above the gradient border */
.swatch-opt .swatch-option:not(.selected, .color):hover *,
.swatch-opt .swatch-option:not(.selected, .color):hover .swatch-option-link-layered {
    position: relative;
    z-index: 1;
}

/* Disabled swatch options - keep original Magento styling */
.swatch-opt .swatch-option.disabled {
    position: relative;
    pointer-events: none;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.24);
    color: rgba(172, 210, 22, 0.46) !important;
    background-color: #f9f9f9;
}

/* Ensure disabled options don't get gradient effects */
.swatch-opt .swatch-option.disabled:hover,
.swatch-opt .swatch-option.disabled:focus,
.swatch-opt .swatch-option.disabled:active {
    background: #f9f9f9 !important;
    border: 1px solid transparent !important;
    box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.24) !important;
}

.swatch-opt .swatch-option.disabled::before,
.swatch-opt .swatch-option.disabled::after {
    display: none !important;
}

/* Swatch attribute labels */
.swatch-opt .swatch-attribute-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding: 0px !important;
    margin-left: 30px;
}

/* More info tooltip adjustments */
.swatch-opt .swatch-more {
    position: relative;
    z-index: 2;
}

/* Wishlist Button  */
.product-addto-links .action.towishlist,
.action.tocompare,
.product-addto-links .action.tocompare,
.moved-add-to-links .action.tocompare {
    border-radius: 50px;
}

/* Add to cart color button */
.action.tocart {
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
}

#product-options-wrapper {
    float: left;
    width: 100%;
}

.options-pdp {
    float: left;
    width: 50%;
}

.sizechart-pdp {
    float: left;
    width: 50%;
    margin-top: 10px;
}

.swatch-opt .swatch-attribute {
    display: flex;
    justify-content: flex-start;
}

.product-options-wrapper .swatch-attribute-label {
    padding: 0px !important;
    line-height: 50px !important;
}

button.action-primary.action-accept {
    font-size: 1em !important;
    padding: 0.8em 2em !important;
}

@media all and (min-width: 992px),
print {
    .column.main {
        min-height: auto !important;
    }
}

.catalog-product-view div.mage-error {
    position: initial !important;
}

/* Size Guide */
.product-size-chart span {
    display: block;
    float: left;
    height: 10px;
    width: 16px;
    margin-right: 4px;
    gap: 2px;
}

/* Size Chart Modal */
.modal-popup .action-close,
.modal-slide .action-close {
    top: 28px !important;
}

.modal-popup .modal-inner-wrap {
    width: 60% !important;
}

/* Currency Dropdown */
.page-header .switcher .options ul.dropdown {
    min-width: 45px !important;
}

/* ------------------ Product Page ------------------ */
.product-options-wrapper .swatch-opt {
    margin-top: 1rem !important;
}

/* .product-button {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
} */

/* Header Background color changes */
.page-header .header-main {
    color: #171c26 !important;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.4) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%),
        #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Footer Background color changes */
footer.page-footer {
    color: #171c26 !important;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.4) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    min-height: 200px !important;
}

.page-footer .footer,
.page-footer .footer-middle,
.page-footer .footer-bottom {
    background: transparent !important;
}

.share-links .share-facebook:hover {
    background: #1877f2 !important;
}

.share-links .share-instagram:hover {
    background: #e4405f !important;
}

/* Nav Bar Menu Hover Effect */
nav.navigation.sw-megamenu ul li {
    transition: all 0.3s ease;
}

nav.navigation.sw-megamenu ul li:hover {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.4) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    transform: scale(0.9);
}

/* Breadcrumbs changes */
.breadcrumbs .items {
    background-color: initial !important;
}

.page-wrapper>.breadcrumbs .items {
    color: #393939 !important;
}

/* Home Page layout width */
.layout-fullwidth .container {
    padding-left: 72px !important;
    padding-right: 72px !important;
}

/* Sub Title Size */
h2 {
    font-size: 28px !important;
}

/* Category Padding */
.category-flex {
    margin-top: 12px;
    margin-bottom: 10px;
}

/* Footer Sapcing */
.footer .footer-bottom {
    padding: 1rem 0 !important;
}

.footer-middle>.container {
    position: relative;
    padding-top: 4rem;
    padding-bottom: initial !important;
}

/* Owl Carousel Prev Next Btn Designs */
.porto-products .owl-carousel .owl-nav .owl-next {
    right: -28px !important;
}

.porto-products .owl-carousel .owl-nav .owl-prev {
    left: -28px !important;
}

.porto-products .owl-carousel.nav-style-4 .owl-nav [class*="owl-"] {
    padding: 3px !important;
    font-size: 20px !important;
    border-radius: 50px;
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: white !important;
}

/* ------------------ Customize Page Product Category Alignment ------------------*/
.owl-carousel.owl-loaded {
    margin-bottom: 50px;
}

.cart.actions button.action,
.cart-discount .actions-toolbar button.action {
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
}

.action.primary {
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
}

.limiter {
    gap: 10px;
}

.box-tocart {
    margin: 0 50px;
}

.products-grid.wishlist .product-item .fieldset .product-item-actions {
    padding-left: 20px;
}

/* --------------------- Shoppping Cart UI Changes --------------------- */
.cyos-cart-table thead {
    background-color: #f1f4f9;
}

.cyos-cart-table-wrapper {
    border: 2px solid #e7e7e7;
    padding: 24px 30px;
    border-radius: 24px;
}

.cart-summary {
    border-radius: 24px;
}

.cart-discount .actions-toolbar element.style {
    padding-left: 12px !important;
}

textarea {
    border-radius: 12px !important;
}

select {
    border-radius: 12px !important;
}

.fieldset>.field input.input-text:not(.product-add-form .field input.input-text) {
    line-height: 32px;
    border-radius: 12px !important;
}

#discount-coupon-form #coupon_code {
    border-radius: 24px;
    height: 43px;
}

.cart-discount .actions-toolbar {
    padding-left: 12px;
}

.opc-wrapper {
    border-radius: 24px;
}

.opc-block-summary {
    border-radius: 24px;
}

.opc-wrapper .shipping-address-item.selected-item:after {
    background: #5e21fe;
    height: 26px;
    width: 29px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 8px;
}

.opc-wrapper .shipping-address-item.selected-item {
    border-color: #5e21fe;
    border-radius: 12px;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.2) 11.43%,
            rgba(112, 0, 254, 0.2) 61.27%);
    color: #171c26;
}

.page-main-inner .opc-progress-bar-item._active>span:before {
    background: #5e21fe;
    color: #171c26;
}

.page-main-inner .opc-progress-bar-item._active:before {
    background: #5e21fe;
}

#newsletter_popup input[type="email"] {
    border-radius: 24px !important;
}

#newsletter_popup form.subscribe {
    gap: 10px;
}

.sg-main-container .card-title {
    color: #222529;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
}

.sg-main-container .card-title h2 {
    font-weight: 600;
    font-size: 28px;
}

.wpb_content_element,
.m_content_element {
    margin-bottom: 56px !important;
}

/* ------------------- Trending Design ------------------- */
#trending-designs .trending-grid.limited-designs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#trending-designs .design-card {
    flex: 0 1 calc(25% - 20px);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    position: relative;
}

#trending-designs .design-thumbnail {
    width: auto;
    height: 175px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

#trending-designs .design-info {
    padding: 10px;
}

#trending-designs .design-category {
    margin: 5px 0;
    font-size: 16px;
    color: #171c26;
}

#trending-designs .design-name {
    margin: 5px 0 2px;
    font-size: 18px;
    font-weight: 600;
}

#trending-designs .design-vendor {
    margin: 0;
    font-size: 16px;
    color: #6811fe;
}

#trending-designs .design-sales {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: #6200ea;
}

/* Hover effect for cards */
#trending-designs .design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#trending-designs .design-card:hover .design-info {
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.2) 11.43%,
            rgba(112, 0, 254, 0.2) 61.27%);
}

/* Hide navigation arrows by default */
#trending-designs .owl-nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Show on hover */
#trending-designs:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}

/* Optional: Position arrows nicely */
#trending-designs .owl-nav button.owl-prev,
#trending-designs .owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

#trending-designs .owl-nav button.owl-prev {
    left: -15px;
}

#trending-designs .owl-nav button.owl-next {
    right: -15px;
}

/* Hide disabled buttons */
#trending-designs .owl-nav button.disabled {
    display: none;
}

/* ------------------ Latest Artist ------------------ */
#latest-artists .artist-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    border: 3px solid #f1f4f9;
}

#latest-artists .artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#latest-artists .artist-banner {
    width: auto;
    height: 175px;
    background-size: cover;
    background-repeat: no-repeat;
}

#latest-artists .artist-profile-img {
    position: absolute;
    top: 130px;
    left: 20%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
}

#latest-artists .artist-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#latest-artists .artist-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin-top: 50px;
    margin-bottom: 20px;
}

#latest-artists .artist-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#latest-artists .artist-name {
    margin: 5px 0 2px;
    font-size: 18px;
    font-weight: 600;
    color: #171c26;
}

#latest-artists .artist-country {
    font-size: 14px;
    color: #666;
}

#latest-artists .artist-action {
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6200ea;
    border: 2px solid #6811fe;
    border-radius: 24px;
    text-decoration: none;
    white-space: nowrap;
}

/* Hide nav icons by default */
#latest-artists.recent-artists .owl-nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show nav icons on hover */
#latest-artists.recent-artists:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}

/* Optional: Position and style nav icons (adjust as needed) */
#latest-artists.recent-artists .owl-nav .owl-prev,
#latest-artists.recent-artists .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

#latest-artists.recent-artists .owl-nav .owl-prev {
    left: -15px;
}

#latest-artists.recent-artists .owl-nav .owl-next {
    right: -15px;
}

/* MOBILE RESPONSIVE STYLES */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    #latest-artists .artist-card {
        margin: 0 5px;
    }

    #latest-artists .artist-name {
        font-size: 16px;
    }

    #latest-artists .artist-country {
        font-size: 13px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    #latest-artists .artist-card {
        margin: 0 8px;
        border-width: 2px;
    }

    #latest-artists .artist-banner {
        height: 150px;
    }

    #latest-artists .artist-profile-img {
        top: 110px;
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    #latest-artists .artist-info {
        margin-top: 45px;
        margin-bottom: 15px;
        padding: 0 12px;
    }

    #latest-artists .artist-name {
        font-size: 16px;
    }

    #latest-artists .artist-country {
        font-size: 12px;
    }

    #latest-artists .artist-action {
        padding: 8px 12px;
        font-size: 11px;
        margin-top: 8px;
        margin-bottom: 15px;
    }

    /* Show navigation on tablets by default */
    #latest-artists.recent-artists .owl-nav {
        opacity: 1;
        visibility: visible;
    }

    #latest-artists.recent-artists .owl-nav .owl-prev,
    #latest-artists.recent-artists .owl-nav .owl-next {
        padding: 8px;
        font-size: 14px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    #latest-artists .artist-card {
        margin: 0 10px;
        border-width: 2px;
    }

    #latest-artists .artist-banner {
        height: 120px;
    }

    #latest-artists .artist-profile-img {
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    #latest-artists .artist-info {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    #latest-artists .artist-details {
        align-items: center;
        width: 100%;
    }

    #latest-artists .artist-name {
        font-size: 14px;
        margin: 3px 0 1px;
    }

    #latest-artists .artist-country {
        font-size: 11px;
        margin-bottom: 8px;
    }

    #latest-artists .artist-action {
        padding: 6px 10px;
        font-size: 10px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    /* Mobile navigation adjustments */
    #latest-artists.recent-artists .owl-nav .owl-prev,
    #latest-artists.recent-artists .owl-nav .owl-next {
        padding: 6px;
        font-size: 12px;
        top: 35%;
    }

    #latest-artists.recent-artists .owl-nav .owl-prev {
        left: -7px !important;
        width: 24px !important;
        height: 24px !important;
    }

    #latest-artists.recent-artists .owl-nav .owl-next {
        right: -7px !important;
        width: 24px !important;
        height: 24px !important;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    #latest-artists .artist-card {
        margin: 0 5px;
    }

    #latest-artists .artist-banner {
        height: 100px;
    }

    #latest-artists .artist-profile-img {
        top: 70px;
        width: 50px;
        height: 50px;
    }

    #latest-artists .artist-info {
        margin-top: 30px;
        padding: 0 8px;
    }

    #latest-artists .artist-name {
        font-size: 13px;
    }

    #latest-artists .artist-country {
        font-size: 10px;
    }

    #latest-artists .artist-action {
        padding: 4px 8px;
        font-size: 9px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    #latest-artists .artist-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* Always show navigation on touch devices */
    #latest-artists.recent-artists .owl-nav {
        opacity: 1;
        visibility: visible;
    }

    /* Increase touch target size */
    #latest-artists .artist-action {
        padding: 10px 15px;
        font-size: 12px;
    }

    #latest-artists.recent-artists .owl-nav .owl-prev,
    #latest-artists.recent-artists .owl-nav .owl-next {
        padding: 12px;
        font-size: 16px;
    }
}

/* ------------------ Account Menu Hover effects ------------------ */
.account-menu li:hover {
    font-weight: 600;
}

.account-menu li:hover a {
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    background-clip: text !important;
    color: transparent !important;
}

/* ------------------ Explore Design Page CSS ------------------ */
/* Hide page title wrapper */
.explore-index-index .page-title-wrapper {
    display: none;
}

/* Main layout */
.explore-layout {
    display: flex;
    gap: 20px;
    padding: 0 15px;
    align-items: flex-start;
}

/* Filters Sidebar */
#artwork-explore-page .filters {
    width: 18%;
    background: white;
    border-radius: 12px;
    padding: 32px 0;
    position: sticky;
}

/* Filter Summary */
#artwork-explore-page .filter-summary {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(241, 244, 249, 1);
    border-radius: 12px;
    color: #171c26;
}

#artwork-explore-page .filter-summary strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    color: #111827;
}

/* Filter Category Groups */
#artwork-explore-page .filter-category-group {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

#artwork-explore-page .filter-category-group:last-of-type {
    margin-bottom: 20px;
}

#artwork-explore-page .filter-category-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    margin-top: 6px;
    min-width: 60px;
}

/* Filter Chips Container */
#artwork-explore-page .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

/* Individual Filter Chip */
#artwork-explore-page .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e5e7eb;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#artwork-explore-page .filter-chip .chip-text {
    line-height: 1.2;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#artwork-explore-page .filter-chip .chip-remove {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

#artwork-explore-page .filter-chip .chip-remove:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Clear All Button */
#artwork-explore-page .clear-all-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(55, 65, 81, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#artwork-explore-page .clear-all-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(55, 65, 81, 0.3);
}

/* Filter Sections */
#artwork-explore-page .filters h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #171c26;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

#artwork-explore-page .filters form {
    display: flex;
    flex-direction: column;
}

/* Scroll Areas */
#artwork-explore-page .filter-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

#artwork-explore-page .filter-scroll::-webkit-scrollbar {
    width: 4px;
}

#artwork-explore-page .filter-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

#artwork-explore-page .filter-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

#artwork-explore-page .category-filter {
    max-height: none;
    overflow-y: visible;
    padding: 0;
}

#artwork-explore-page .category-filter .parent-toggle:first-child,
.category-filter .parent-toggle:first-child+.subcategory-list {
    display: none;
}

/* Parent Category Toggle */
#artwork-explore-page .parent-toggle {
    cursor: pointer;
    font-weight: 600;
    color: #111827;
    padding: 10px 0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

#artwork-explore-page .parent-toggle:hover {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    color: transparent;
}

#artwork-explore-page .plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f3f4f6;
    border-radius: 4px;
    font-size: 12px;
    color: #6b7280;
    font-weight: bold;
    transition: all 0.2s;
}

#artwork-explore-page .parent-toggle:hover .plus-icon {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    color: transparent;
}

/* Subcategory List */
#artwork-explore-page .subcategory-list label {
    display: block;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: color 0.2s;
}

#artwork-explore-page .subcategory-list label:hover {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    color: transparent;
}

/* Checkbox Styling */
#artwork-explore-page .subcategory-list input[type="checkbox"],
#artwork-explore-page .artist-filter input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    appearance: none;
    background: white;
}

#artwork-explore-page .subcategory-list input[type="checkbox"]:checked,
#artwork-explore-page .artist-filter input[type="checkbox"]:checked {
    border-color: #6811fe;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
}

#artwork-explore-page .subcategory-list input[type="checkbox"]:checked::after,
#artwork-explore-page .artist-filter input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: -3px;
    left: 1px;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* Artist Filter */
#artwork-explore-page .artist-filter {
    display: block;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: color 0.2s;
}

#artwork-explore-page .artist-filter:hover {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    color: transparent;
}

/* Apply Button */
#artwork-explore-page .filters button[type="button"] {
    width: 100%;
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

#artwork-explore-page .filters button[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Results Section */
#artwork-explore-page .explore-results {
    width: 80%;
    background: white;
    border-radius: 12px;
}

/* Header Section with Left-Right Alignment */
#artwork-explore-page .explore-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 2px solid #e5e7eb;
}

#artwork-explore-page .explore-title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#artwork-explore-page .explore-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 5px;
}

#artwork-explore-page .results-count {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Search Section */
#artwork-explore-page .search-section form {
    display: flex;
    align-items: center;
    gap: 10px;
}

#artwork-explore-page .search-section input[type="text"] {
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    width: 250px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
}

#artwork-explore-page .search-section input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

#artwork-explore-page .search-section button.action.search {
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

#artwork-explore-page .search-section button.action.search:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

/* Products Grid */
#artwork-explore-page ul.products.list.items.product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    list-style: none;
    padding: 0;
    padding-top: 20px;
}

#artwork-explore-page li.product-item {
    width: calc(25% - 15px) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

#artwork-explore-page li.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Fixed Image Container */
#artwork-explore-page .product-item-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 10px;
}

/* Fixed Image Sizing */
#artwork-explore-page .explore-product-image-photo {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 180px;
    min-height: 120px;
    object-fit: contain !important;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 8px;
}

#artwork-explore-page li.product-item:hover .explore-product-image-photo {
    transform: scale(1.05);
}

#artwork-explore-page .product.details.porto-section.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

#artwork-explore-page .product.name.product-item-name a {
    font-size: 14px;
    font-weight: 600;
    color: #171c26;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#artwork-explore-page .price-box.price-final_price .normal-price {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    color: transparent;
}

/* Pagination */
#artwork-explore-page .explore-results .pager {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 2px solid #f1f5f9;
    margin-bottom: 15px;
}

/* No Results */
#artwork-explore-page .explore-results h2 {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 20px;
    font-weight: 600;
}

#artwork-explore-page .limiter-options {
    width: 50px;
    margin: 0;
}

/* Mobile Filter Button */
#artwork-explore-page .mobile-filter-btn-container {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

#artwork-explore-page .mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: white !important;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    justify-content: flex-start;
    margin-left: 30px;
}

#artwork-explore-page .mobile-filter-btn:hover {
    background: #0056b3 !important;
}

#artwork-explore-page .filter-icon {
    font-size: 18px;
}

#artwork-explore-page .filter-count {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}

/* Filter Drawer Overlay */
#artwork-explore-page .filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#artwork-explore-page .filter-drawer-overlay.active {
    display: block;
    opacity: 1;
}

#artwork-explore-page .filter-drawer {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    z-index: 10000;
}

#artwork-explore-page .filter-drawer-overlay.active .filter-drawer {
    left: 0;
}

#artwork-explore-page .filter-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.4) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%),
        #ffffff !important;
}

#artwork-explore-page .filter-drawer-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

#artwork-explore-page .close-filter-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #171c26;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

#artwork-explore-page .close-filter-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

#artwork-explore-page .filter-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Filter Summary */
#artwork-explore-page .mobile-filter-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

#artwork-explore-page .mobile-filter-summary strong {
    display: block;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
}

#artwork-explore-page .mobile-filter-summary .filter-category-group {
    margin-bottom: 12px;
}

#artwork-explore-page .mobile-filter-summary .filter-category-group:last-child {
    margin-bottom: 0;
}

#artwork-explore-page .mobile-filter-summary .filter-category-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    font-size: 14px;
}

#artwork-explore-page .mobile-filter-summary .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#artwork-explore-page .mobile-filter-summary .filter-chip {
    display: inline-flex;
    align-items: center;
    background: #e9ecef;
    border-radius: 15px;
    padding: 4px 8px;
    font-size: 12px;
    color: #333;
}

#artwork-explore-page .mobile-filter-summary .chip-text {
    margin-right: 5px;
}

#artwork-explore-page .mobile-filter-summary .chip-remove {
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

#artwork-explore-page .mobile-filter-summary .chip-remove:hover {
    background: rgba(220, 53, 69, 0.1);
}

#artwork-explore-page .filter-drawer-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
}

#artwork-explore-page .filter-drawer-content .filter-scroll {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

#artwork-explore-page .filter-drawer-content .category-filter .parent-toggle {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
}

#artwork-explore-page .filter-drawer-content .subcategory-list label {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
}

#artwork-explore-page .filter-drawer-content .artist-filter {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
}

/* Filter Drawer Footer */
#artwork-explore-page .filter-drawer-footer {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

#artwork-explore-page .clear-all-mobile,
#artwork-explore-page .apply-filters-mobile {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

#artwork-explore-page .clear-all-mobile {
    background: #6c757d;
    color: white;
}

#artwork-explore-page .clear-all-mobile:hover {
    background: #5a6268;
}

#artwork-explore-page .apply-filters-mobile {
    background: #007bff;
    color: white;
}

#artwork-explore-page .apply-filters-mobile:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #artwork-explore-page li.product-item {
        width: calc(33.33% - 14px) !important;
    }

    #artwork-explore-page .search-section input[type="text"] {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .explore-layout {
        display: initial;
    }

    #artwork-explore-page .explore-layout {
        flex-direction: column;
    }

    #artwork-explore-page .filters,
    #artwork-explore-page .explore-results {
        width: 100% !important;
    }

    #artwork-explore-page .desktop-filters {
        display: none;
    }

    #artwork-explore-page .mobile-filter-btn-container {
        display: block;
    }

    #artwork-explore-page .mobile-filter-btn {
        margin-left: 15px;
    }

    #artwork-explore-page .explore-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    #artwork-explore-page .explore-title-section,
    #artwork-explore-page .search-section {
        width: 100%;
        text-align: center;
    }

    #artwork-explore-page .search-section input[type="text"] {
        width: 100%;
        max-width: 300px;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    #artwork-explore-page li.product-item {
        width: calc(50% - 10px) !important;
    }

    #artwork-explore-page .explore-product-image-photo {
        max-height: 150px;
        min-height: 100px;
        width: 100%;
        object-fit: cover;
    }

    #artwork-explore-page .product-item-inner {
        min-height: 170px;
    }

    #artwork-explore-page .filter-category-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #artwork-explore-page .filter-category-label {
        margin-top: 0;
        min-width: auto;
    }

    #artwork-explore-page .filter-chips {
        width: 100%;
    }

    #artwork-explore-page .filter-chip .chip-text {
        max-width: 120px;
    }

    #artwork-explore-page .products-grid {
        padding: 0 15px;
    }

    #artwork-explore-page ul.products.list.items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    #artwork-explore-page .product-item {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
    }

    #artwork-explore-page .product-content {
        padding: 10px;
    }

    #artwork-explore-page .product-item-name {
        font-size: 14px;
        margin-bottom: 5px;
    }

    #artwork-explore-page .price-box {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .explore-layout {
        display: initial;
    }

    #artwork-explore-page li.product-item {
        width: 100% !important;
    }

    #artwork-explore-page .explore-product-image-photo {
        max-height: 140px !important;
        min-height: 90px;
    }

    #artwork-explore-page .product-item-inner {
        min-height: 160px;
    }

    #artwork-explore-page .filters,
    #artwork-explore-page .explore-results {
        padding: 15px;
    }

    #artwork-explore-page .explore-header {
        gap: 10px;
    }

    #artwork-explore-page .explore-title {
        font-size: 20px;
    }

    #artwork-explore-page .filter-summary {
        padding: 15px;
    }

    #artwork-explore-page .filter-chip {
        padding: 5px 10px;
        font-size: 12px;
    }

    #artwork-explore-page .filter-chip .chip-text {
        max-width: 100px;
    }

    #artwork-explore-page .filter-chip .chip-remove {
        width: 16px;
        height: 16px;
        font-size: 14px;
    }

    #artwork-explore-page .filter-drawer button[type="button"] {
        width: 100%;
        background: linear-gradient(106.22deg,
                #238cfc 11.43%,
                #7000fe 61.27%) !important;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    }

    #artwork-explore-page .mobile-filter-btn {
        margin-left: 30px;
    }
}

@media (min-width: 769px) {
    #artwork-explore-page .mobile-filter-btn-container {
        display: none;
    }

    #artwork-explore-page .filter-drawer-overlay {
        display: none !important;
    }

    #artwork-explore-page .desktop-filters {
        display: block;
    }

    #artwork-explore-page .explore-layout {
        display: flex;
        gap: 20px;
    }

    #artwork-explore-page .filters {
        flex: 0 0 300px;
    }

    #artwork-explore-page .explore-results {
        flex: 1;
    }

    #artwork-explore-page .explore-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    #artwork-explore-page ul.products.list.items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* ------------------ My Account UI ------------------ */

.account .block-collapsible-nav .item a,
.block-collapsible-nav .item>strong {
    border-bottom: none;
}

.account .qty.field .input-text.qty {
    border-width: 1px !important;
}

.account .box .box-title {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #f1f4f9;
    position: relative;
    border-radius: 24px 24px 0px 0px;
}

.account .box .box-actions {
    margin: 0;
    border: 1px solid #ddd;
    border-top: 0;
    background-color: #f1f4f9;
    padding: 10px 15px;
    border-radius: 0 0 24px 24px;
}

.account .box .box-content {
    padding: 20px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-top: 0;
    background-color: #fbfbfb;
    min-height: 135px;
}

.account .sidebar-content li.nav.item a:hover {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    color: transparent;
}

.account .block-collapsible-nav .item a:before,
.block-collapsible-nav .item>strong:before {
    display: none;
}

.account .block-collapsible-nav .item.current strong {
    font-size: 14px;
    font-weight: 500;
    color: black;
    border-radius: 24px;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.2) 11.43%,
            rgba(112, 0, 254, 0.2) 61.27%);
}

/* ------------------ Shop by store homepage ------------------ */
#shop-by-store {
    position: relative;
    padding: 0 50px;
}

#shop-by-store .store-item {
    background: #ffffff;
    border: 1px solid #f1f4f9;
    border-radius: 50px;
    padding: 10px 15px;
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
}

#shop-by-store .store-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    width: 100%;
    min-width: 0;
}

#shop-by-store .store-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 10px;
}

#shop-by-store .store-item span {
    color: #171c26;
    font-weight: 500;
    font-size: 14px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

#shop-by-store .owl-carousel.owl-drag .owl-item {
    margin-bottom: 10px;
}

#shop-by-store .view-store-link {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

#shop-by-store .view-store-action {
    background: transparent;
    cursor: pointer;
    border-radius: 50px;
    padding: 8px 16px;
    border: 1px solid #171c26;
    color: #171c26 !important;
    outline: none;
    font-size: 14px;
}

#shop-by-store .view-store-action:hover .arrow-right {
    transform: rotate(45deg);
}

/* Hide navigation arrows by default */
#shop-by-store .owl-nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Show on hover - includes both container hover and nav button hover */
#shop-by-store:hover .owl-nav,
#shop-by-store .owl-nav:hover {
    opacity: 1;
    visibility: visible;
}

/* Position arrows within the container bounds */
#shop-by-store .owl-nav button.owl-prev,
#shop-by-store .owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

#shop-by-store .owl-nav button.owl-prev {
    left: -50px !important;
}

#shop-by-store .owl-nav button.owl-next {
    right: -50px !important;
}

/* Hide disabled buttons */
#shop-by-store .owl-nav button.disabled {
    display: none;
}

/* Responsive Design */
/* Mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    #shop-by-store {
        padding: 0 10px;
        /* Minimal padding */
    }

    #shop-by-store .store-item {
        width: 100%;
        /* Full-width items for single-column layout */
        max-width: 300px;
        /* Cap max-width for consistency */
        height: 60px;
        /* Smaller height */
        padding: 6px 10px;
        border-radius: 25px;
        /* Slightly smaller border-radius */
    }

    #shop-by-store .store-item img {
        width: 40px;
        /* Smaller image */
        height: 40px;
        margin-right: 6px;
    }

    #shop-by-store .store-item span {
        font-size: 12px;
        /* Smaller font */
        max-width: none;
        /* Allow text to use available space */
    }

    /* Hide carousel arrows on mobile for touch-based navigation */
    #shop-by-store .owl-nav {
        display: none;
    }

    #shop-by-store .view-store-link {
        margin-top: 15px;
    }

    #shop-by-store .view-store-action {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 20px;
        /* Smaller border-radius */
    }

    #shop-by-store .owl-carousel.owl-drag .owl-item {
        margin-bottom: 8px;
        /* Slightly less margin */
    }
}

/* ------------------ Store Products Page Filter Styles ------------------*/
.store-filter-container {
    width: 100%;
    background: white;
    border-radius: 12px;
    position: sticky;
    top: 20px;
}

.filter-summary {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(241, 244, 249, 1);
    border-radius: 10px;
    color: #171c26;
    border: none;
}

.filter-summary strong {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.filter-category-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.filter-category-group:last-of-type {
    margin-bottom: 15px;
}

.filter-category-label {
    font-size: 14px;
    font-weight: 600;
    color: #171c26;
    white-space: nowrap;
    padding-top: 6px;
    min-width: 60px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e5e7eb;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chip-text {
    line-height: 1.2;
}

.chip-remove {
    color: #171c26;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.clear-all-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(55, 65, 81, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.store-filter-now-shopping-by {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(241, 244, 249, 1);
    border-radius: 10px;
    color: #171c26;
    border: none;
}

.store-filter-now-shopping-by strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    color: #111827;
}

.store-filter-now-shopping-by ul.store-filter-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-filter-now-shopping-by ul.store-filter-tags li {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #171c26;
}

.store-filter-now-shopping-by .store-filter-remove {
    color: #171c26;
    text-decoration: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

.store-filter-now-shopping-by .store-filter-remove:hover {
    background: rgba(255, 255, 255, 0.4);
}

.store-filter-now-shopping-by .store-filter-remove-all {
    cursor: pointer;
    padding: 8px 16px;
    color: #171c26 !important;
    font-size: 14px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #e5e7eb;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 24px;
}

/* Filter Form */
.store-filter-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

/* Dropdown functionality for filter headers */
.filter-dropdown {
    margin-bottom: 15px;
}

.filter-dropdown h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #171c26;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.plus-icon {
    font-size: 18px;
    font-weight: bold;
    color: #6b7280;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Store Filter List */
.store-filter-scrollable {
    max-height: 200px !important;
    overflow-y: auto;
    padding-right: 5px;
}

.store-filter-scrollable::-webkit-scrollbar {
    width: 4px;
}

.store-filter-scrollable::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.store-filter-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

#storeFilterForm > div:nth-child(6) > ul > li{
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.store-filter-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.store-filter-navigation label {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: color 0.2s;
}

ul.store-filter-navigation label:hover {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Checkbox Styling */
ul.store-filter-navigation input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    appearance: none;
    background: white;
    flex-shrink: 0;
}

ul.store-filter-navigation input[type="checkbox"]:checked {
    border-color: #6811fe;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
}

ul.store-filter-navigation input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 11px;
    font-weight: bold;
}

/* Size tiles grid container */
.size-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 0px 10px;
}

/* Size tiles styling */
.size-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 13px;
    color: #374151;
}

.size-tile:hover {
    border-color: #6b7280;
    background: #e5e7eb;
}

.size-tile.selected {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    color: white;
    border-color: #6811fe;
    font-weight: 700;
}

.size-tile span {
    pointer-events: none;
}

/* Color tiles grid container */
.color-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px 5px;
}

/* Square color tiles */
.color-tile-square {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid #000000;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-tile-square.selected {
    border-color: #171c26;
    transform: scale(1.05);
}

/* Selected state indicator for square tiles */
.color-tile-square.selected::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Scrollbar for tiles grids */
.color-tiles-grid::-webkit-scrollbar,
.size-tiles-grid::-webkit-scrollbar {
    width: 4px;
}

.color-tiles-grid::-webkit-scrollbar-track,
.size-tiles-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.color-tiles-grid::-webkit-scrollbar-thumb,
.size-tiles-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

/* Apply Button */
.store-filter-container button[type="button"] {
    width: 100%;
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.store-filter-container button[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .store-filter-container {
        padding: 20px 15px;
        position: static;
    }

    .filter-category-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .filter-category-label {
        min-width: auto;
        padding-top: 0;
    }

    .filter-chips {
        width: 100%;
    }

    .store-filter-now-shopping-by ul.store-filter-tags li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .store-filter-now-shopping-by .store-filter-remove {
        align-self: flex-end;
    }

    .color-tile-square {
        width: 30px;
        height: 30px;
    }
    
    .color-tiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
        gap: 6px;
        max-height: 150px;
    }
    
    .color-tile-square.selected::after {
        font-size: 10px;
    }
    
    .size-tile {
        min-height: 35px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .size-tiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
        gap: 6px;
        max-height: 150px;
    }
    
    .filter-dropdown h4 {
        font-size: 18px;
    }
}
/* ------------------ Store Products Page List Styles ------------------ */
.storeproducts-index-index .store-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 1200px;
}

.storeproducts-index-index .page-title-wrapper {
    display: none;
}

#store-products {
    display: flex;
    gap: 20px;
    padding: 0 15px;
    align-items: flex-start;
}

#store-products.store-products-layout {
    display: flex;
    gap: 20px;
    padding: 0 15px;
    align-items: flex-start;
}

#store-products.store-products-layout .filters {
    width: 20%;
}

#store-products.store-products-layout .store-products-wrapper {
    width: 80%;
    padding: 0;
}

/* Products Container */
#store-products .shopby-store-products {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 20px;
}

/* Header Section */
#store-products .title-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

#store-products .title-count span {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

#store-products .title-count .results-count {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Product Listing */
#store-products ul.product-listing {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 2px solid #e5e7eb;
}

#store-products ul.product-listing li.product-item {
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

#store-products .store_more_info {
    padding: 0 15px 10px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 40px;
}

#store-products .store_more_info {
    min-height: 30px;
    padding: 8px 15px 8px 15px;
}

#store-products .store_more_info .store-name {
    font-size: 14px;
}

#store-products .price-box.price-final_price,
#store-products .vendor-price {
    padding: 0 10px 10px 10px;
}

#store-products .price-box.price-final_price .price,
#store-products .vendor-price {
    font-size: 15px;
}

#store-products ul.product-listing li.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Product Image Container - FIXED: Consistent dimensions */
#store-products ul.product-listing li.product-item .porto-tb-link {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
}

/* Product Images - FIXED: Consistent sizing */
#store-products ul.product-listing li.product-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

/* Product Actions - FIXED: Positioned at bottom of porto-tb-link container */
#store-products .product.actions.product-item-actions {
    position: absolute;
    bottom: 10px;
    /* Position from bottom of porto-tb-link container */
    left: 10px;
    right: 10px;
    padding: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

#store-products ul.product-listing li.product-item:hover .product.actions.product-item-actions {
    opacity: 1;
    visibility: visible;
}

#store-products .product.actions.product-item-actions .actions-primary {
    display: flex;
    width: 100%;
}

#store-products .product.actions.product-item-actions button.action.tocart.primary {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
    width: 100%;
    text-align: center;
    height: 36px;
    line-height: 1.2;
}

#store-products .product.actions.product-item-actions button.action.tocart.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

/* Product Info */
#store-products .product-name {
    padding: 15px;
    padding-bottom: 8px;
}

#store-products .product-name a {
    font-size: 14px;
    font-weight: 600;
    color: #171c26;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Vendor Price */
#store-products .vendor-price {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding: 0 15px 15px;
}

#store-products .vendor-price {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding: 0 15px 15px;
}

/* Pagination */
#store-products .pager {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    margin-top: 20px;
}

/* No Results */
#store-products .shopby-store-products h2 {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Remove default styles that might conflict */
#store-products .now-shopping-by {
    background: #f5f5f5;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

#store-products .now-shopping-by ul {
    list-style: none;
    padding-left: 0;
}

#store-products .now-shopping-by li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

#store-products .now-shopping-by .clear-all {
    margin-top: 10px;
}

#store-products .limiter-options {
    width: 50px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #store-products ul.product-listing li.product-item {
        width: calc(33.33% - 14px);
    }

    #store-products ul.product-listing li.product-item .porto-tb-link {
        height: 220px;
    }
}

@media (max-width: 768px) {
    #store-products.store-products-layout {
        flex-direction: column;
    }

    #store-products.store-products-layout .filters,
    #store-products.store-products-layout .store-products-wrapper {
        width: 100% !important;
    }

    #store-products {
        flex-direction: column;
        padding: 0 10px;
    }

    #store-products .title-count {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    #store-products ul.product-listing li.product-item {
        width: calc(50% - 10px);
    }

    .storeproducts-index-index .store-slider {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        max-width: 1200px;
        margin-bottom: 20px;
    }

    #store-products ul.product-listing li.product-item .porto-tb-link {
        height: 200px;
    }

    #store-products .product.actions.product-item-actions {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    #store-products .product.actions.product-item-actions button.action.tocart.primary {
        font-size: 12px;
        padding: 8px 15px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    #store-products ul.product-listing li.product-item {
        width: 100%;
    }

    #store-products ul.product-listing li.product-item .porto-tb-link {
        height: 180px;
    }

    #store-products .shopby-store-products {
        padding: 15px;
    }

    #store-products .title-count span {
        font-size: 20px;
    }

    #store-products .product.actions.product-item-actions {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    #store-products .product.actions.product-item-actions button.action.tocart.primary {
        font-size: 12px;
        padding: 8px 15px;
        height: 32px;
    }
}

/* Add to cart A tag design */
.product-item-info .product-type-advanced .product-item-inner:not(.show-cart-icon) .product-item-actions>.actions-primary .tocart span {
    display: inline-block;
    vertical-align: middle;
    line-height: 2.5rem !important;
}

.action.primary.list-design-button {
    display: none !important;
}

/* Qty input design */
.qty.field .control {
    width: 180px !important;
}

.qty.field .input-text.qty {
    width: 110px !important;
    border-width: 1px !important;
}

/* Product Detail Page Button Changes */
#product-addtocart-button {
    color: #171c26 !important;
    background: linear-gradient(106.22deg,
            rgba(35, 140, 252, 0.4) 11.43%,
            rgba(112, 0, 254, 0.3) 61.27%),
        #ffffff !important;
    border-radius: 50px !important;
}

#product-designer-button:before {
    content: "\270E";
    font-family: "porto-icons";
}

/* ------------------ Mobile Store Filter Styles ------------------ */
/* Mobile Store Filter Button */
.mobile-store-filter-btn-container {
    display: none;
    width: 30%;
}

.mobile-store-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: white !important;
    border: none;
    border-radius: 24px !important;
    font-size: 14px !important;
    cursor: pointer;
    justify-content: flex-start;
    margin-left: 15px;
}

.mobile-store-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.mobile-store-filter-btn .filter-icon {
    margin-right: 5px;
}

.mobile-store-filter-btn .store-filter-count {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}

/* Store Filter Drawer Overlay */
.store-filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-filter-drawer-overlay.active {
    display: block;
    opacity: 1;
}

/* Store Filter Drawer */
.store-filter-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 10000;
}

.store-filter-drawer-overlay.active .store-filter-drawer {
    left: 0;
}

/* Store Filter Drawer Header */
.store-filter-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(106.22deg, rgba(35, 140, 252, 0.4) 11.43%, rgba(112, 0, 254, 0.3) 61.27%), #ffffff !important;
    color: white;
}

.store-filter-drawer-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close-store-filter-btn {
    background: none !important;
    border: none !important;
    color: #171c26 !important;
    font-size: 20px !important;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-store-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Store Filter Drawer Content */
.store-filter-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 80px;
}

/* Mobile Store Filter Summary */
.mobile-store-filter-summary {
    background: rgba(241, 244, 249, 1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: #171c26;
}

.mobile-store-filter-summary strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    color: #111827;
}

.store-filter-category-group {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

.store-filter-category-group:last-of-type {
    margin-bottom: 20px;
}

.store-filter-category-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    margin-top: 6px;
    min-width: 60px;
}

.store-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.store-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e5e7eb;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.store-filter-chip .store-chip-text {
    line-height: 1.2;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-filter-chip .store-chip-remove {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.store-filter-chip .store-chip-remove:hover {
    background: rgba(220, 53, 69, 0.1);
}

.store-clear-all-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(55, 65, 81, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.store-clear-all-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(55, 65, 81, 0.3);
}

/* Mobile Store Filter Content */
.mobile-store-filter-content .store-filter-container {
    display: block !important;
    position: static !important;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    width: 100%;
}

.mobile-store-filter-content .store-filter-container h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #171c26;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.mobile-store-filter-content .store-filter-scrollable {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 20px;
}

.mobile-store-filter-content .store-filter-scrollable::-webkit-scrollbar {
    width: 4px;
}

.mobile-store-filter-content .store-filter-scrollable::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.mobile-store-filter-content .store-filter-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.mobile-store-filter-content .store-filter-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-store-filter-content .store-filter-navigation label {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: color 0.2s;
}

.mobile-store-filter-content .store-filter-navigation label:hover {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.mobile-store-filter-content .store-filter-navigation input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    appearance: none;
    background: white;
    flex-shrink: 0;
}

.mobile-store-filter-content .store-filter-navigation input[type="checkbox"]:checked {
    border-color: #6811fe;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
}

.mobile-store-filter-content .store-filter-navigation input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.mobile-store-filter-content .store-filter-container button[type="button"] {
    width: 100%;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%) !important;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    margin-top: 0;
}

.mobile-store-filter-content .store-filter-container button[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.mobile-store-filter-content .store-filter-now-shopping-by {
    display: none !important;
}

/* Mobile Responsive Rules */
@media (max-width: 768px) {
    .mobile-store-filter-btn-container {
        display: block;
    }

    .desktop-filters {
        display: none !important;
    }

    #store-products.store-products-layout {
        display: block !important;
    }

    #store-products.store-products-layout .filters {
        display: none !important;
    }

    #store-products.store-products-layout .store-products-wrapper {
        width: 100% !important;
    }

    #store-products {
        padding: 0 !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .store-filter-drawer {
        width: 100%;
        max-width: 70vw;
    }

    .mobile-store-filter-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .store-filter-drawer-header {
        padding: 8px;
    }

    .store-filter-drawer-content {
        padding: 15px;
        padding-bottom: 80px;
    }

    .store-filter-chip .store-chip-text {
        max-width: 120px;
    }

    #mobileStoreFilterForm button[type="button"] {
        width: 100%;
        background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%) !important;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
        margin-top: 0;
    }

}

/* Desktop - ensure mobile elements are hidden */
@media (min-width: 769px) {
    .mobile-store-filter-btn-container {
        display: none !important;
    }

    .store-filter-drawer-overlay {
        display: none !important;
    }

    .desktop-filters {
        display: block !important;
    }
}

/* -------------------------- Contact Us Page -------------------------- */
.contact-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Arial", sans-serif;
    color: #333;
}

.contact-us-wrapper .contact-page-title {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.contact-us-wrapper .contact-page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    border-radius: 2px;
}

.contact-us-wrapper .contact-intro-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg,
            rgba(35, 140, 252, 0.1),
            rgba(112, 0, 254, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(35, 140, 252, 0.2);
}

.contact-us-wrapper .contact-intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-us-wrapper .contact-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 40px;
    align-items: flex-start;
}

.contact-us-wrapper .contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    flex: 2;
    min-width: 0;
}

.contact-us-wrapper .contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
}

.contact-us-wrapper .contact-info-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
}

.contact-us-wrapper .contact-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(106.22deg, #7000fe 11.43%, #238cfc 61.27%);
}

.contact-us-wrapper .contacts-title {
    font-weight: 600 !important;
    margin-bottom: 30px !important;
    color: #171c26 !important;
}

.contact-us-wrapper .contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Contact Form Styles */
.contact-us-wrapper .form.contact {
    width: 100%;
}

.contact-us-wrapper .form.contact .fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0;
}

.contact-us-wrapper .form.contact .legend {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #171c26;
    border: none;
    padding: 0;
    width: auto;
}

.contact-us-wrapper .form.contact .legend span {
    background: none;
    padding: 0;
}

.contact-us-wrapper .form.contact .fieldset.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
}

.contact-us-wrapper .form.contact .fields {
    flex: 1;
    min-width: 100%;
}

.contact-us-wrapper .form.contact .field-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-us-wrapper .form.contact .field-row .field {
    flex: 1;
    margin-bottom: 0;
}

.contact-us-wrapper .form.contact .field {
    margin-bottom: 25px;
}

.contact-us-wrapper .form.contact .field.comment {
    grid-column: 1 / -1;
}

.contact-us-wrapper .form.contact .label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.contact-us-wrapper .form.contact .field.required .label span:not(:empty)::after {
    content: " *";
    color: #e74c3c;
}

.contact-us-wrapper .form.contact .field.required .label span:has(+ span)::after,
.contact-us-wrapper .form.contact .field.required .label span+span::after {
    display: none;
}

.contact-us-wrapper .form.contact .control {
    position: relative;
}

.contact-us-wrapper .form.contact .input-text,
.contact-us-wrapper .form.contact textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-family: inherit;
}

.contact-us-wrapper .form.contact .input-text:focus,
.contact-us-wrapper .form.contact textarea:focus {
    outline: none;
    border-color: #238cfc;
    box-shadow: 0 0 0 3px rgba(35, 140, 252, 0.1);
    background: rgba(255, 255, 255, 1);
}

.contact-us-wrapper .form.contact textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-us-wrapper .form.contact .actions-toolbar {
    margin-top: 30px;
    text-align: left;
}

.contact-us-wrapper .form.contact .action.submit.primary {
    background: linear-gradient(45deg, #238cfc, #7000fe);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: inherit !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.contact-us-wrapper .form.contact .action.submit.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.contact-us-wrapper .form.contact .action.submit.primary:hover::before {
    left: 100%;
}

.contact-us-wrapper .form.contact .action.submit.primary span {
    position: relative;
    z-index: 1;
}

.contact-us-wrapper .form.contact .field-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.contact-us-wrapper .form.contact .mage-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.contact-us-wrapper .form.contact .action.submit.primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-us-wrapper .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-us-wrapper .contact-form-section,
    .contact-us-wrapper .contact-info-section {
        flex: 1;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-us-wrapper .contact-page-title {
        font-size: 36px;
    }

    .contact-us-wrapper .contact-form-section,
    .contact-us-wrapper .contact-info-section {
        padding: 30px 20px;
    }

    .contact-us-wrapper {
        padding: 15px;
    }

    .contact-us-wrapper .contact-container {
        gap: 20px;
    }

    .contact-us-wrapper .form.contact .fieldset.row {
        flex-direction: column;
    }

    .contact-us-wrapper .form.contact .field-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-us-wrapper .form.contact .field-row .field {
        margin-bottom: 25px;
    }

    .contact-us-wrapper .form.contact .fields {
        min-width: 100%;
    }

    .contact-us-wrapper .form.contact .legend {
        font-size: 24px;
    }

    .contact-us-wrapper .form.contact .action.submit.primary {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {

    .contact-us-wrapper .contact-form-section,
    .contact-us-wrapper .contact-info-section {
        padding: 20px 15px;
    }

    .contact-us-wrapper .contact-page-title {
        font-size: 28px;
    }

    .contact-us-wrapper .contacts-title {
        font-size: 24px;
    }
}

/* -------------------------- Bulk Enquiry Form -------------------------- */
.bulk-enquiry-wrapper {
    margin: 60px;
    font-family: "Arial", sans-serif;
    color: #333;
}

.bulk-enquiry-wrapper .enquiry-page-title {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.bulk-enquiry-wrapper .enquiry-page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
    border-radius: 2px;
}

.bulk-enquiry-wrapper .enquiry-intro-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg,
            rgba(35, 140, 252, 0.1),
            rgba(112, 0, 254, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(35, 140, 252, 0.2);
}

.bulk-enquiry-wrapper .enquiry-intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.bulk-enquiry-wrapper .enquiry-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.bulk-enquiry-wrapper .enquiry-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%);
}

/* Form Styles */
.bulk-enquiry-wrapper .form.bulk-enquiry-form {
    width: 100%;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .legend {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #171c26;
    border: none;
    padding: 0;
    width: auto;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .legend span {
    background: none;
    padding: 0;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field {
    margin-bottom: 25px;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field.note {
    background: rgba(35, 140, 252, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #238cfc;
    margin-bottom: 30px;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field.note p {
    color: #238cfc;
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

/* Two-column layout for form fields */
.bulk-enquiry-wrapper .form.bulk-enquiry-form .field-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field-row .field {
    flex: 1;
    margin-bottom: 0;
}

/* Upload Files Row - Three Boxes Layout */
.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-files-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-files-row .upload-box {
    flex: 1;
    margin-bottom: 0;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-control {
    position: relative;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area {
    border: 2px dashed #e1e8ed;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area:hover {
    border-color: #238cfc;
    background: rgba(35, 140, 252, 0.05);
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area.drag-over {
    border-color: #238cfc;
    background: rgba(35, 140, 252, 0.1);
    transform: scale(1.02);
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area.has-file {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-icon {
    color: #999;
    margin-bottom: 10px;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area:hover .upload-icon {
    color: #238cfc;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-text {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-subtext {
    font-size: 12px;
    color: #999;
    margin: 0;
    font-style: italic;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .input-file.hidden {
    display: none;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .file-name {
    margin-top: 8px;
    font-size: 12px;
    color: #27ae60;
    font-weight: 500;
    text-align: center;
    word-break: break-all;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .label {
    display: flex;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
    align-items: center;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field.required .label span:not(:empty)::after {
    content: " *";
    color: #e74c3c;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field.required .label span:has(+ span)::after,
.bulk-enquiry-wrapper .form.bulk-enquiry-form .field.required .label span+span::after {
    display: none;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .control {
    position: relative;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .input-text {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-family: inherit;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .input-text:focus {
    outline: none;
    border-color: #238cfc;
    box-shadow: 0 0 0 3px rgba(35, 140, 252, 0.1);
    background: rgba(255, 255, 255, 1);
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .input-text::placeholder {
    color: #999;
    font-style: italic;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .actions-toolbar {
    margin-top: 30px;
    text-align: center;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .action.submit.primary {
    background: linear-gradient(45deg, #238cfc, #7000fe);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: inherit !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 200px;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .action.submit.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .action.submit.primary:hover::before {
    left: 100%;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .action.submit.primary span {
    position: relative;
    z-index: 1;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .field-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .mage-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.bulk-enquiry-wrapper .form.bulk-enquiry-form .action.submit.primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bulk-enquiry-wrapper .enquiry-page-title {
        font-size: 36px;
    }

    .bulk-enquiry-wrapper .enquiry-form-section {
        padding: 30px 20px;
    }

    .bulk-enquiry-wrapper {
        padding: 15px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .field-row,
    .bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-files-row {
        flex-direction: column;
        gap: 0;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .field-row .field,
    .bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-files-row .upload-box {
        margin-bottom: 25px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area {
        padding: 20px 15px;
        min-height: 120px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .legend {
        font-size: 24px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .action.submit.primary {
        width: 100%;
        padding: 15px 20px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .bulk-enquiry-wrapper .enquiry-form-section {
        padding: 20px 15px;
    }

    .bulk-enquiry-wrapper .enquiry-page-title {
        font-size: 28px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .legend {
        font-size: 22px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-area {
        padding: 15px 10px;
        min-height: 100px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-text {
        font-size: 13px;
    }

    .bulk-enquiry-wrapper .form.bulk-enquiry-form .upload-subtext {
        font-size: 11px;
    }
}

/* -------------------------- My Wishlist Page -------------------------- */
.wishlist-index-index .qty.field .control {
    width: 50px !important;
}

.wishlist-index-index .box-tocart {
    margin: 0px !important;
}

.wishlist-index-index .products-grid.wishlist .product-item .tocart {
    height: auto;
    line-height: 30px;
    min-width: 170px !important;
    padding: 0 11px;
}

.wishlist-index-index .qty.field .input-text.qty {
    width: 60px !important;
}

.wishlist-index-index .products-grid.wishlist .product-item .fieldset .product-item-actions {
    padding-left: 10px !important;
}

@media (min-width: 992px) {
    .wishlist-index-index .products-grid .product-items .product-item {
        width: 30% !important;
    }
}

/* Bulk Enquiry Form  */
.enquiry-index-index .page-title-wrapper {
    display: none;
}

/* Carasouel Add to cart alignment */
.product-item-info .product-item-details .product-item-actions .tocart {
    margin-right: 40px !important;
}

/* Artwork page follow us */
.artwork-banner-detail .social-main .social li {
    margin-right: 8px;
    margin-bottom: 0;
    list-style-type: none;
}

/* ----------------------------- All Stores -----------------------------  */
.storeproducts-index-viewall .page-title-wrapper {
    display: none;
}

.all-stores-container {
    margin-top: clamp(2rem, 5vw, 56px);
    padding: 0 clamp(0.75rem, 4vw, 2rem);
}

.stores-heading {
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #333;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    max-width: 1400px;
    margin: 0 auto;
}

.store-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    min-height: 280px;
    will-change: transform;
}

.store-card:hover,
.store-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.store-card:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.store-card:active {
    transform: translateY(-2px);
}

.store-card-image {
    width: 100%;
    height: clamp(160px, 20vw, 200px);
    object-fit: cover;
    display: block;
    background-color: #f8f9fa;
    transition: opacity 0.3s ease;
}

.store-card-image:hover {
    opacity: 0.95;
}

.store-card-content {
    padding: clamp(0.75rem, 2.5vw, 1.25rem);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.store-card-name {
    font-size: clamp(0.875rem, 2.2vw, 1rem);
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Enhanced Responsive Design */

/* Extra Large Desktops */
@media (min-width: 1400px) {
    .stores-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Large Desktops */
@media (min-width: 1200px) and (max-width: 1399px) {
    .stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .store-card {
        min-height: 260px;
    }

    .store-card-image {
        height: 180px;
    }
}

/* Large Mobile Phones */
@media (min-width: 576px) and (max-width: 767px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .store-card {
        min-height: 240px;
    }

    .store-card-image {
        height: 160px;
    }

    .store-card-content {
        padding: 0.75rem;
        min-height: 70px;
    }
}

/* Small Mobile Phones */
@media (max-width: 575px) {
    .all-stores-container {
        padding: 0 1rem;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .store-card {
        min-height: 220px;
        border-radius: 10px;
    }

    .store-card-image {
        height: 150px;
    }

    .store-card-content {
        padding: 0.75rem;
        min-height: 60px;
    }

    .store-card-name {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 380px) {
    .all-stores-container {
        padding: 0 0.75rem;
    }

    .stores-grid {
        gap: 0.75rem;
    }

    .store-card {
        min-height: 200px;
        border-radius: 8px;
    }

    .store-card-image {
        height: 130px;
    }

    .store-card-content {
        padding: 0.5rem;
        min-height: 55px;
    }

    .store-card-name {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .store-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .store-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* High DPI/Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .store-card {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .store-card:hover,
    .store-card:focus {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .store-card {
        transition: none;
    }

    .store-card:hover {
        transform: none;
    }

    .store-card-image {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .all-stores-container {
        margin-top: 1rem;
    }

    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .store-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .store-card:hover {
        transform: none;
        box-shadow: none;
    }
}

.storeproducts-index-index #shop-by-store .store-item {
    background: #ffffff;
    border: none;
    border-radius: 56px;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    margin-top: 15px;
    width: initial;
    height: initial;
    box-shadow: none;
}

.storeproducts-index-index #shop-by-store .store-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 10px;
}

.block-collapsible-nav .item:first-child {
    border-top: initial !important;
}

.cart-empty .btn-go-shop {
    background: linear-gradient(106.22deg,
            #238cfc 11.43%,
            #7000fe 61.27%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 0px !important;
    line-height: 2.5 !important;
}

.explore-index-index .page-main,
.storeproducts-index-index .page-main {
    padding-top: 0px !important;
}

.columns .column.main {
    padding-bottom: initial !important;
}

.product-info-main .page-title-wrapper h1 {
    font-size: 22px;
}

.product-info-price {
    font-size: 20px !important;
}

/* ------------------ Store Products detail page Store Logo and Name ------------------ */
.catalog-product-view .product-store-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0px;
}

.catalog-product-view .product-store-logo {
    flex-shrink: 0;
}

.catalog-product-view .product-store-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #dee2e6;
}

.catalog-product-view .product-store-info {
    flex: 1;
    min-width: 0;
}

.catalog-product-view .product-store-info a {
    text-decoration: none;
    color: #495057;
    display: block;
}

.catalog-product-view .product-store-info a:hover {
    color: #007bff;
}

.catalog-product-view .product-store-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* ------------------ Product Pre-order label design ------------------ */
.catalog-product-view .product-labels.backorder {
    position: absolute !important;
    top: 175px !important;
    left: 175px !important;
    width: 75px;
}

.product-labels.backorder {
    right: 20px !important;
    left: initial !important;
    top: 8px !important
}

.product-label.backorder-label {
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(106.22deg, rgba(35, 140, 252, 0.8) 11.43%, rgba(112, 0, 254, 0.7) 61.27%), #ffffff !important;;
}

/*------------------ Mini Cart label color change ------------------ */
.minicart-wrapper .block-minicart .total-count .actions a {
    background: linear-gradient(106.22deg, #238cfc 11.43%, #7000fe 61.27%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    font-size: 14px;
    transition: all 0.3s ease !important;
}

.minicart-wrapper .block-minicart .total-count .actions a:hover {
    transform: scale(1.03) !important;
    filter: drop-shadow(0 0 6px rgba(35, 140, 252, 0.5)) 
            drop-shadow(0 0 12px rgba(112, 0, 254, 0.3)) !important;
}

/* ------------------ Checkout Page Cart Dropdown ------------------ */
.content.minicart-items {
    display: block !important;
}

.totals.shipping .value {
    display: none;
}

/* ------------------ Checkout Page Alignment Changes ------------------ */
#shipping-new-address-form > div:nth-child(7){
    display: flex;
    flex-direction: column;
}

.form-shipping-address .address .field:nth-child(5) {
    margin-right: 12px;
}

#checkout-index-index .opc-progress-bar{
    text-align: center;
}