/* Custom Styles */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Padding for body when sticky cart bar is visible */
.cart-visible-padding {
    padding-bottom: 80px; /* Adjust based on sticky bar height */
}

/* Disable Text Selection (Anti-Copy) */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ */
    user-select: none;         /* Standard */
}