.topnav-is-dark .top-navbar {
    --tw-bg-opacity: 1;
    background-color: #000000;
    background-color: rgb(250 212 211);
    --tw-text-opacity: 1;
    color: #ffffff;
    color: rgb(0 0 0);
}
.store-footer__inner {
    border-bottom-width: 1px;
    border-style: dashed;
    border-bottom-color: rgba(255,255,255,.1);
    --tw-bg-opacity: 1;
    background-color: #1d1f1f;
    background-color: rgb(250 212 211);
    padding-top: 2rem;
    padding-bottom: 2rem;
}
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #4f4e4e;
}
.store-footer {
    position: relative;
    margin-top: 2rem;
    --tw-bg-opacity: 1;
    background-color: #0e0f0f;
    background-color: rgba(14,15,15,var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: #fff;
    color: rgb(0 0 0);
}

.s-product-card-image img {
    height: 100%;
    width: 100%;
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 500ms;
}

.copyright-text p {
color:#fff;
}
body {
  
    background-color:#fff!important;
}


.s-button-btn {
background-color:#000;
color:#fff;
}
.s-button-btn:hover {
background-color:#f9d8d9;
border:0;
}

.s-product-card-vertical {
overflow: hidden;
border: 1.5px solid transparent;
transition: border-color 0.3s ease;
}

.s-product-card-vertical:hover {
border-color: #f9d8d9;
animation: drawBorder 2s forwards;
}

@keyframes drawBorder {
0% {
stroke-dasharray: 0;
stroke-dashoffset: 0;
}
100% {
stroke-dasharray: 1000; /* Adjust this value based on the length of your border */
stroke-dashoffset: 0;
}
}