@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dea346;
    --secondary-color: #66100b;
    --text-color: #6e6e6e;
    --black: #333333;
    --pink: #f4f4f4;
}

body {
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

.green {
    color: var(--green);
}

.red {
    color: red;
}

.my-05 {
    margin: .5rem 0;
}

.my-1 {
    margin: 1rem 0;
}

.my-2 {
    margin: 2rem 0;
}

.my-5 {
    margin: 1rem 0;
}

.mt-2 {
    margin-top: 2rem;
}

.border-right {
    border-right: 0.5px solid #d0d5dd;
}

.t-c {
    text-align: center;
}

.t-r {
    text-align: right;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
    line-height: 23px;
}

.w-33 {
    width: 33%;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mobile-only {
    display: none;
}

.fs-xs {
    font-size: .7rem;
}

.p-1 {
    padding: 1rem;
}

.p-05 {
    padding: .5rem 1rem;
}

.d-flex {
    display: flex;
    gap: 2rem .5rem;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}
.overflow-hidden{
    overflow: hidden;
}
.dgr-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.dgr2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blur {
    filter: blur(5px);
    background: #bdbdbd;
}


.scroll-x {
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
}

.input-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.input-wrapper input {
    text-align: center;
    padding: 2px 8px;
    border-radius: 8px;
    border: 0.6px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    width: 25%;
    height: 3.5rem;
}

#instant-address input {
    margin: .25rem 0;
    padding: .5rem;

}

.sticky-top {
    position: sticky;
    top: -15px;
    background: white;
}

.paybutton {
    background: var(--secondary-color);
    color: white;
    width: 100%;
    cursor: pointer;
    display: block;
    border-radius: 10px;
    padding: .75rem;
    margin: .5rem 0;
    text-decoration: none;
}

.pointer {
    cursor: pointer;
}

.leftmodal {
    width: 30%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #f4f4f4;
    z-index: 1000;
}

.rightmodal {
    width: 30%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #f4f4f4;
    padding: .75rem 0 .75rem .75rem;
    z-index: 1000;
}

.rightmodal #closeicon1 {
    right: 10px;
    height: 30px;
    width: 30px;
}

.modal {
    width: 50%;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
}

header {
    width: 100%;
    height: 100px;
    background-color: var(--secondary-color);
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 99;
    position: sticky;
    top: 0;
}

header>div:nth-child(2) {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#searchicon,
.functionality img,
#menuicon {
    width: 25px;
    cursor: pointer;
}

#menuicon {
    display: none;
}

#logo img {
    height: 50px;
}

.nav-logo {
    display: none;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.searchbar {
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    display: none;
}

.searchbar button {
    width: 25px;
    background: none;
}

.searchbar form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchbar form input {
    width: 60%;
}

.searchbar button img {
    width: 25px;
}

.functionality {
    display: flex;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

#back {
    width: 25px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}


.mb-5 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: .5rem;
}

.item {
    display: flex;
    gap: 1rem;
    border: 0.5px solid #0000001A;
    border-radius: 10px;
    padding: 1rem;
    margin: .5rem 0;
    position: relative;
}

.pr-img {
    width: 30%;
    flex: 30%;
    aspect-ratio: 3/4;
    object-fit: cover;
    height: 100%;
}

.delete-item,
.delete-wishitem {
    position: absolute;
    right: 5px;
    top: 10px;
    width: 25px;
}

.itemproduct_details {
    flex: 70%;
}

.itemproduct_details>* {
    margin: .3rem 0;
}

select#data {
    padding: 0.5rem;
    outline: none;
}


.selectedsize {
    padding: 0.2rem;
    border: 0.5px solid #0000001A;
    width: max-content;
    border-radius: .25rem;
    display: inline-block;
}

.selectedsize select {
    background: transparent;
    border: none;
    text-align: right;
}

.cart-quantity {
    border: 0.5px solid #0000001A;
    width: max-content;
    padding: .2rem;
    border-radius: .25rem;
    display: inline-block;
    margin-left: .5rem;
}

.cart-quantity span {
    width: auto;
    padding: 5px;
    cursor: pointer;
}

.offers {
    padding: 1rem 0;
}

.offer {
    border: 0.5px solid var(--primary-color);
    padding: .5rem;
    border-radius: .2rem;
    font-size: 15px;
}

.summary-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.order-summary>div {
    margin: .75rem 0;
}

.order-summary hr {
    color: #fafafa
}

.total-mrp,
.total-discount,
.coupon-discount,
.total-payable,
.shipping-charges {
    font-size: 1rem;
    font-weight: 500;
    color: var(--green);
}

.payment-banner {
    background: #fafafa;
    margin: 1rem 0;
    width: 100%;
}

.cart-total {
    width: 100%;
    padding: .75rem;
    justify-content: space-between;
    gap: 1.5rem;
    position: absolute;
    bottom: 5px;
    left: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 0 2px rgba(237, 75, 107, 0.7);
    background: white;
    z-index: 1;
}


.cart-total h2 {
    width: auto;
    font-weight: 600;
}

.cart .button {
    width: 100%;
    background: var(--primary-color);
    border-radius: 5px;
    outline: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

button {
    background: var(--secondary-color);
    padding: .75rem;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.button {
    width: 100%;
    background: var(--black);
    border-radius: 5px;
    outline: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: .5rem 0;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
}

.move-to-cart {
    background: var(--primary-color);
    border-radius: 5px;
    outline: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: .25rem 1rem;
    text-decoration: none;
    font-size: 12px;
}

.cart .detail {
    height: calc(92vh - 60px);
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color);
    padding: .75rem;
}

.sale-note {
    background-color: aliceblue;
    color: var(--green);
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

#wishlist {
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    position: fixed;
    right: 0;
    top: 0;
    width: 35%;
    background-color: var(--secondary-color);
    padding: 1rem;
    z-index: 1;
}

.container {
    width: 100%;
    padding: 3rem;
    overflow: hidden;
    position: relative;
}

.px-3 {
    padding: 0 3rem;
}

.px-1 {
    padding: 0.75rem;
}

.django-message {
    position: absolute;
    top: 125px;
    left: 50%;
    text-align: center;
    background: var(--primary-color);
    width: 90%;
    transform: translateX(-50%);
    padding: 1rem;
}

.message {
    position: fixed;
    display: none;
    top: 80px;
    left: 50%;
    color: white;
    width: 60%;
    height: auto;
    z-index: 101;
    text-align: center;
    font-size: 16px;
    padding: 1rem;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--pink);
    animation: text-zoom 4s linear;
}

@keyframes text-zoom {
    0% {
        background-color: var(--primary-color);
    }

    100% {
        background-color: var(--black);
    }
}



#address-window {
    border-radius: 15px;
    width: 500px;
    padding: 2rem;
}

#address-window hr {
    color: #fbfbfb;
    margin: 10px 0;
}

input {
    outline: none;
    padding: 0.75rem;
    border-radius: 8px;
    border: 0.6px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin: .5rem 0;
}

#address-form select {
    outline: none;
    padding: 0.75rem;
    border-radius: 8px;
    border: 0.6px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin: .5rem 0;
}

input:focus {
    box-shadow: 0 0 8px var(--pink);
    border-color: rgba(237, 75, 107, 0.8) !important;
    outline: none;
}

textarea:focus {
    box-shadow: 0 0 8px var(--pink) !important;
    border-color: var(--pink) !important;
    outline: none;
}


#billing-address {
    display: none;
    margin-bottom: 1rem;
}

.billing {
    margin: .5rem 0;
}

footer {
    padding: 3rem 3rem 1rem 3rem;
    background-color: var(--secondary-color);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

footer .dgr-4 {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 1rem;
}

.logo-footer {
    width: 140px;
    height: auto;
    aspect-ratio: 10/6;
    margin-bottom: 1rem;
}

footer ul li {
    margin: .5rem 0;
}

li {
    list-style: none;
}

.subscribe button {
    background: white;
    color: black;
    font-size: 12px;
    padding: .5rem;
}

.subscribe input {
    padding: 0.5rem;
    border: none;
    outline: none;
    margin: 0.5rem 0;
    border-radius: 5px;
    width: 100%;
}

.whatsapp {
    position: fixed;
    bottom: 0px;
    left: 5px;
    z-index: 99;
}

.whatsapp img {
    width: 40px;
    height: 40px;
}

.payment-cards {
    height: 30px;
    width: 100%;
}

#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: .5rem;
    display: none;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.contactpage {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contactpage div:first-child {
    padding-right: 2rem;
}

#contactform {
    padding: 1rem;
}

#contactform input {
    width: 100%;
    outline: none;
    padding: 0.75rem;
    border-radius: 8px;
    border: 0.6px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin: .5rem 0;

}

#contactform input:focus {
    box-shadow: 0 0 8px var(--pink);
    border-color: var(--pink);
    outline: none;
}

iframe {
    width: 100%;
}

#contactform textarea {
    width: 100%;
    height: 200px;
    outline: none;
    padding: 0.75rem;
    border-radius: 8px;
    border: 0.6px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin: .5rem 0;
    font-size: 15px;
}

tr td {
    padding: 0 1rem;
}

.dataTables_wrapper {
    overflow-x: scroll;
    scrollbar-width: none;
}

.dots span {
    display: inline-block;
    animation: blink 1.5s infinite;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.dots span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* loginform */
#id_login,
#id_password,
#id_email,
#id_username,
#id_password1,
#id_password2 {
    padding: 0.5rem;
    border-radius: 5px;
    margin: .5rem 0;
    outline: none;
    border: 0.6px solid #d0d5dd;
    width: 100%;
}

.manual-order {
    padding: 2.5rem;
}

.manual-order form p {
    display: grid;
    grid-template-columns: 1fr 5fr;
}

.manual-order form p input,
.manual-order form p select {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border: 0.6px solid var(--text-color);
    border-radius: 8px;
}

.manual-order form p input:focus,
.manual-order form p select:focus {
    border: 0.6px solid var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    outline: none;
}

.bottom-banner1 {
    display: flex;
    justify-content: space-between;
    background-color: var(--pink);
    padding: 2rem 3rem;
}

.bottom-banner1 img {
    width: 32px;
    height: 32px;
}

.border-rounded {
    border: 1px solid blue;
    border-radius: 10px;
}

.relative {
    position: relative;
}

.button1 {
    padding: 3px 10px;
    background: green;
    border-radius: 10px;
    font-size: .8rem;
    color: white;
}

.blue {
    color: blue;
}

#closeicon1 {
    position: absolute;
    top: 20px;
    right: 25px;
    background: gray;
    border-radius: 50%;
    padding: 5px;
    width: 40px;
}

.magic-checkout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1000;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    align-items: center;
}

.magic-checkout>div {
    background-color: white;
    max-width: 600px;
    padding: 20px;
    overflow-y: scroll;
}

.magic-checkout #address-window {
    width: 100%;
    padding: 1rem;
    border: 1px solid black;
}

.thin-border {
    border-bottom: solid 0.5px #e8e8e8;
    margin-top: 2px;
    color: transparent;
}

.gap-10 {
    gap: 20px;
}


#user-menu {
    position: fixed;
    top: 100px;
    padding: 1rem;
    background-color: #f4f4f4;
    width: 200px;
    right: -100%;
}

#user-menu li{
    margin: 5px 0px;
}

.mobilemenu_header {
    display: none;
}

@media (max-width: 1024px) and (min-width: 768px) {

    .message {
        width: 90%;
    }

    .container {
        width: 100%;
        padding: 2rem;
    }

    footer {
        padding: 2rem;
    }

    footer .dgr-4 {
        grid-template-columns: 1fr 1fr;
    }

    #logo {
        margin-bottom: 0;
    }

    nav {
        position: absolute;
        left: -100%;
        top: 0;
        width: 50%;
        height: 100vh;
        background: #f4f4f4;
        padding: 2rem;
    }

    .nav-logo {
        display: block;
        height: 66px;
        margin-bottom: 20px;
        transform: translateX(-50%);
        left: 50%;
        position: relative;
    }

    nav ul {
        gap: 0;
        flex-direction: column;
    }

    nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
    }

    nav ul li a {
        color: black;
    }

    #searchicon {
        display: none;
    }

    #menuicon {
        display: block;
    }

    #wishicon,
    #usericon {
        display: none;
    }

    .mobile-only {
        display: block;
    }

}

/* Responsive design: mobiles */
@media (max-width: 768px) {

    .mobile-only {
        display: block;
    }

    .nav-logo {
        display: block;
        height: 66px;
        margin-bottom: 20px;
        transform: translateX(-50%);
        left: 50%;
        position: relative;
    }

    #logo {
        margin-bottom: 0;
    }

    .container {
        width: 100%;
        padding: 1rem;
    }

    .modal {
        width: 90%;
    }

    .rightmodal {
        width: 80%;
    }

    #closelogin {
        top: 30px;
        right: 20px;
        padding: 5px;
        width: 30px;
        border-radius: 50%;
        border: 0.5px solid white;
    }

    .mnone {
        display: none;
    }

    h6 {
        font-size: 14px;
        line-height: 21px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
    }

    .p-05 {
        padding: .5rem;
    }

    a {
        font-size: 12px;
        line-height: 18px;
    }

    .px-3 {
        padding: 0 0.5rem;
    }

    .font-14 {
        font-size: 14px;
        text-align: left;
    }

    #modal-content {
        width: 100%;
    }

    .message {
        top: 60px;
        width: 90%;
        display: none;
    }

    header {
        height: 80px;
        padding: 0 1rem;
        box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
        position: sticky;
        top: 0;
    }

    nav {
        position: absolute;
        left: -100%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: #f4f4f4;
        z-index: 10;
    }

    nav ul {
        gap: 0;
        flex-direction: column;

    }

    nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
    }

    #searchicon {
        display: none;
    }

    #menuicon {
        display: block;
    }

    #wishicon,
    #usericon {
        display: none;
    }

    .functionality {
        width: 30px;
    }

    .functionality img {
        width: 20px;
        height: 20px;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul li a {
        color: black;
    }

    footer {
        padding: 1rem;
    }

    footer .dgr-4 {
        grid-template-columns: 1fr;
    }

    footer .dgr-4>div {
        padding-bottom: 2rem;
        border-bottom: .5px solid white;
    }

    footer .d-flex {
        justify-content: center;
    }

    .payment-cards {
        display: none;
    }

    .contactpage {
        padding: 1rem;
        grid-template-columns: 1fr;
    }

    .contactpage div:first-child {
        border: none;
        padding: 0;
    }

    #contactform {
        padding: 0;
    }

    #orderTable {
        width: max-content;
        overflow-x: scroll;
    }

    #orderTable_length {
        display: inline;
        padding-right: 10px;
    }

    #orderTable_filter {
        display: inline;
    }

    #wishlist {
        width: 80%;
    }

    .cart .detail {
        height: calc(92vh - 45px);
    }

    .cart-total {
        position: absolute;
        bottom: 0;
    }

    .bottom-banner1 {
        flex-direction: column;
        row-gap: 2rem;
    }

    #profile-form {
        width: 90%;
        padding: 1rem;
    }

    .magic-checkout {
        height: calc(100vh - 130px);
        top: 40px;
    }

    .magic-checkout>div {
        background-color: white;
        max-width: 90%;
        padding: .5rem;
    }

    .magic-checkout #address-window {
        width: auto;
        padding: .5rem;
    }

    .magic-checkout #address-window input,
    .magic-checkout #address-window select {
        padding: 0.35rem;
        border-radius: 5px;
        margin: 0.25rem 0;
    }

    .magic-checkout #address-window button {
        padding: .5rem;
        border-radius: 5px;
    }

    .gap-10 {
        gap: 5px;
    }

    .m-none {
        display: none;
    }

    #closeicon1 {
        position: absolute;
        top: 20px;
        right: 25px;
        background: gray;
        border-radius: 50%;
        padding: 5px;
        width: 25px;
    }

    .input-wrapper {
        gap: 5px;
    }

    .mobilemenu_header {
        display: block;
    }

    .mobilemenu_header #closeicon {
        position: absolute;
        top: 10px;
        right: 10px;
        background: black;
        border-radius: 50%;
        padding: 5px;
        width: 25px;
    }

    #logoimg {
        margin-top: 20px;
        margin-left: 15px;
    }

}