/* MAIN NEXT / WEITER BUTTON (Always Red) */
.sticky-md-top > .btn {
    background: #e30614;   /* RED */
    padding: 12px 32px;   
    opacity: 1;
    border-radius: 8px;   
    font-size: 25px;     
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .text-muted {
        padding-left: 0 !important;
    }
}

.sticky-md-top > .btn::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;
}

.sticky-md-top > .btn:hover {
    background: #b90510;   /* DARKER RED */
    opacity: 1;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
}

.sticky-md-top > .btn:hover::before {
    left: 100%;
}

.sticky-md-top > .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(227, 6, 20, 0.3);
}


/* BACK BUTTON (GREY) */
.col-lg-7 > .btn-back {
    background: #707070 !important;
    padding: 12px 32px !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    color: #fff !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
}

.col-lg-7 > .btn-back:hover {
    background: #505050 !important;
    opacity: 1 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.col-lg-7 > .btn-back:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}


/* MODAL BUTTONS — RED FOR "ZUR KASSE" ONLY */
.modal-content .btn.btn-highlight {
    background: #e30614 !important; /* RED */
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-content .btn.btn-highlight::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;
}

.modal-content .btn.btn-highlight:hover {
    background: #b90510 !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
}

.modal-content .btn.btn-highlight:hover::before {
    left: 100%;
}

/* Other modal buttons (grey) */
.modal-content .btn {
    background: #707070 !important;
    padding: 12px 32px !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    color: #fff !important;
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
}

.modal-content .btn:hover {
    background: #505050 !important;
    color: #fff !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.modal-content .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}


/* SIDEBAR CHECKOUT BUTTON — RED */
.col-lg-4.col-xl-3 form .btn {
    background: #e30614 !important;
    padding: 7px 19px !important;
    opacity: 1 !important;
    font-size: 18px !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.col-lg-4.col-xl-3 form .btn::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;
}

.col-lg-4.col-xl-3 form .btn:hover {
    background: #b90510 !important;
    color: #fff !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
}

.col-lg-4.col-xl-3 form .btn:hover::before {
    left: 100%;
}

/* Other sidebar buttons (grey) */
.col-lg-4.col-xl-3 .btn:not(form .btn) {
    background: #707070 !important;
    padding: 12px 32px !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    color: #fff !important;
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
}

.col-lg-4.col-xl-3 .btn:not(form .btn):hover {
    background: #505050 !important;
    color: #fff !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.col-lg-4.col-xl-3 .btn:not(form .btn):active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}










/* MODAL WRAPPER */
.modal-dialog {
    max-width: 480px;
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    border: none;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}


/* MODAL HEADER */
.modal-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e6e6e6;
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.btn-close {
    filter: brightness(0);
    transition: transform 0.2s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
}


/* TOP MAIN BUTTON — "Zur Kasse" */
.modal-content .btn.btn-highlight {
    background: #e30614 !important; 
    padding: 14px 24px !important;
    font-size: 18px !important;
    font-weight: 600;
    border-radius: 8px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(227, 6, 20, 0.3);
}

.modal-content .btn.btn-highlight:hover {
    background: #b90510 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
}


/* MINI BASKET BOX */
.minibasket-menu-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 18px;
    margin-top: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.minibasket-menu-box:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}


/* PRODUCT ITEM */
.minibasket-items .my-1 {
    margin: 0 0 14px 0;
}

.minibasket-items .minibasket-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 8px;
    text-decoration: none !important;
    color: #333;
    border: 1px solid #e2e2e2;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.minibasket-items .minibasket-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.minibasket-items .minibasket-link:hover {
    background: #efefef;
    border-color: #d0d0d0;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.minibasket-items .minibasket-link:hover::before {
    left: 100%;
}

.minibasket-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.minibasket-link:hover .minibasket-img {
    transform: scale(1.05);
}

.minibasket-link span:last-child {
    font-size: 15px;
    line-height: 1.4;
}

.minibasket-link .unit {
    font-size: 12px;
    color: #666;
}


/* PRICE ROWS */
.minibasket-menu-box .row.my-2 {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.minibasket-menu-box .row.my-2:hover {
    background: #f9f9f9;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 4px;
}

.minibasket-menu-box .row.my-2:last-of-type {
    border-bottom: none;
}


/* TOTAL */
.minibasket-total-row {
    padding-top: 12px;
    border-top: 2px solid #e6e6e6;
    transition: all 0.3s ease;
}

.minibasket-total-col {
    font-weight: 600;
    color: #000;
}


/* BOTTOM INFO TEXT */
.bottom .charges {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}


/* SECONDARY BUTTON — "Warenkorb zeigen" */
.modal-content .btn.btn-outline-primary {
    background: #707070 !important;
    border: none !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
}

.modal-content .btn.btn-outline-primary:hover {
    background: #505050 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}




/* MAIN PAGE WRAPPER */
.container-md.py-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

/* LEFT CARD (Payment block) */
.col-lg-7 .card.active {
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.col-lg-7 .card.active:hover {
    box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

#paymentHeader {
    background: #f8f8f8;
    font-size: 22px;
    font-weight: 600;
    padding: 18px 22px;
    border-bottom: 1px solid #e3e3e3;
    transition: all 0.3s ease;
}

.card-body {
    padding: 22px 24px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}


/* PAYMENT PAGE INFO TEXT */
.col-lg-7 .card-body p {
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.col-lg-7 .card-body p:hover {
    transform: translateX(4px);
}


/* BACK BUTTON */
.btn-back {
    background: #707070 !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 17px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
}

.btn-back:hover {
    background: #505050 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.btn-back:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}


/* RIGHT SIDEBAR */
.col-lg-5 .card {
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.col-lg-5 .card:hover {
    box-shadow: 0px 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.col-lg-5 .card-header {
    background: #f8f8f8;
    border-bottom: 1px solid #e6e6e6;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.col-lg-5 .list-group-item {
    padding: 14px 22px;
    font-size: 15px;
    border: none !important;
    background: #fff;
    border-bottom: 1px solid #f3f3f3 !important;
    transition: all 0.2s ease;
}

.col-lg-5 .list-group-item:hover {
    background: #f9f9f9;
    transform: translateX(4px);
    border-radius: 4px;
    margin: 2px 4px;
}

.col-lg-5 .list-group-item:last-child {
    border-bottom: none !important;
}

.list-group-item.h5 {
    font-size: 18px !important;
    font-weight: 600;
    padding-top: 16px;
}


/* STICKY SIDEBAR PADDING FIX */
.sticky-md-top {
    top: 20px;
    transition: all 0.3s ease;
}


/* MAIN RED "WEITER" BUTTON */
.btn-highlight {
    background: #e30614 !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 20px !important;
    font-weight: 600;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-highlight::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;
}

.btn-highlight:hover {
    background: #b90510 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
}

.btn-highlight:hover::before {
    left: 100%;
}

.btn-highlight:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(227, 6, 20, 0.3);
}



/* ============================
   PAGE LAYOUT
=============================== */
.container-xxl.py-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}


/* ============================
   MAIN BASKET CARD
=============================== */
#basket_list.basket {
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

#basket_list.basket:hover {
    box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

#basket_list .card-header {
    background: #f8f8f8;
    font-size: 22px;
    font-weight: 600;
    padding: 18px 24px;
    border-bottom: 1px solid #e3e3e3;
    transition: all 0.3s ease;
}


/* ============================
   PRODUCT ROW
=============================== */
.basketitemrow {
    padding: 20px 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease;
    position: relative;
}

.basketitemrow:hover {
    background: #f9f9f9;
    transform: translateX(4px);
    border-radius: 8px;
    margin: 4px 8px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.basketitemrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #e30614;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.basketitemrow:hover::before {
    transform: scaleY(1);
}

.col-img img {
    border-radius: 8px;
    width: 80px;
    height: 80px;
    padding: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.col-img {
    width: 90px;
    justify-content: center;
    align-items: center;
    display: flex
;
}

.basketitemrow:hover .col-img img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* PRODUCT TITLE */
.basketitemrow .h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.basketitemrow:hover .h5 {
    color: #e30614;
}


/* ITEM DETAILS */
.basket-item-desc .attribute {
    font-weight: 600;
    color: #444;
}

.basket-item-desc .value {
    color: #000;
}


/* PRICE TEXT */
.unit-price .attribute {
    color: #444;
    font-weight: 600;
}

.unit-price .value {
    color: #000;
    font-size: 16px;
    transition: all 0.2s ease;
}

.basketitemrow:hover .unit-price .value {
    color: #e30614;
    font-weight: 600;
}

.article-vat {
    color: #777;
    font-size: 12px;
    margin-left: 4px;
}


/* ============================
   QUANTITY BOX
=============================== */
.quantity .input-group {
    padding: 10px;
    display: flex;
    align-items: center;
    width: 171px;
    transition: all 0.3s ease;
}

.basket .quantity {
    border: 1px solid #00000030 !important;
    max-width: 170px;
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
}

.quantity .input-group:hover {
    transform: scale(1.05);
}

.quantity .btn {
    background: #707070 !important;
    border: none !important;
    color: #fff !important;
    width: 40px;
    height: 43px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}



.quantity input {
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    transition: all 0.2s ease;
}

.quantity input:focus {
    border-color: #e30614;
    box-shadow: 0 0 0 2px rgba(227, 6, 20, 0.1);
}


/* ============================
   REMOVE + WISHLIST BUTTONS
=============================== */
.btn-remove {
    background: transparent !important;
    border: none !important;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-remove::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 6, 20, 0.1);
    border-radius: 6px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.btn-remove svg {
    width: 22px;
    height: 22px;
    fill: #707070;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-remove:hover {
    transform: scale(1.1);
}

.btn-remove:hover::before {
    transform: scale(1);
}

.btn-remove:hover svg {
    fill: #e30614;
    transform: scale(1.2); 
    transition: 0.2s ease-in-out;
}

.d-flex {
    display: flex !important;
    flex-direction: column;
}



/* ============================
   PRODUCT TOTAL RIGHT SIDE
=============================== */
.totalPrice strong {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    transition: all 0.2s ease;
}

.basketitemrow:hover .totalPrice strong {
    color: #e30614;
    transform: scale(1.05);
}


/* ============================
   SIDEBAR ORDER SUMMARY
=============================== */
.col-lg-4.col-xl-3 .card {
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.col-lg-4.col-xl-3 .card:hover {
    box-shadow: 0px 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.col-lg-4 .card-header {
    background: #f8f8f8;
    padding: 18px 22px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.list-group-item {
    padding: 14px 20px !important;
    background: #fff;
    border-bottom: 1px solid #f3f3f3 !important;
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background: #f9f9f9;
    transform: translateX(4px);
    border-radius: 6px;
    margin: 2px 6px;
}

.list-group-item:last-child {
    border-bottom: none !important;
}

.list-group-item.h5 {
    font-weight: 700;
}


/* ============================
   VOUCHER BOX
=============================== */
#voucherCollapse .card-body {
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.voucher-input input {
    border-radius: 8px 0 0 8px;
    transition: all 0.2s ease;
}

.voucher-input input:focus {
    border-color: #e30614;
    box-shadow: 0 0 0 2px rgba(227, 6, 20, 0.1);
}

.voucher-btn {
    border-radius: 0 8px 8px 0 !important;
    background: #707070 !important;
    border: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}

.voucher-btn:hover {
    background: #505050 !important;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(112, 112, 112, 0.3);
}


/* ============================
   MAIN CTA BUTTON "Zur Kasse"
=============================== */
.btn-highlight {
    background: #e30614 !important;
    font-size: 20px !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-highlight::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;
}

.btn-highlight:hover {
    background: #b90510 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
}

.btn-highlight:hover::before {
    left: 100%;
}

.btn-highlight:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(227, 6, 20, 0.3);
}


/* ============================
   BACK BUTTON
=============================== */
.btn-back {
    background: #707070 !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
    border: none !important;
    color: #fff !important;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
}

.btn-back:hover {
    background: #505050 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.btn-back:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}

.btn-outline-primary {
    background: #e30614!important;
    border: none !important;
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 10px rgba(131, 19, 19, 0.3) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Hover */
.btn-outline-primary:hover {
    background: #b90510!important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(131, 19, 19, 0.4) !important;
}

/* Active */
.btn-outline-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(131, 19, 19, 0.3) !important;
}


/* ============================
   PASSWORD RECOVERY PAGE STYLING
=============================== */

/* Page Header */
.container-xxl.py-5 {
    padding: 40px;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.h3.page-header {
    font-size: 28px !important;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    position: relative;
    text-align: left;
}

.h3.page-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e30614;
    border-radius: 2px;
}

/* Dropdown Styling */
.dropdown .btn {
    background: #707070 !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown .btn:hover {
    background: #505050 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.dropdown .btn:active {
    transform: translateY(0);
}

.dropdown .btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.dropdown.show .btn svg {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    padding: 8px 0;
    animation: dropdownFade 0.3s ease;
    border: 1px solid #e6e6e6 !important;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px !important;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item:hover {
    background: #f8f8f8 !important;
    color: #e30614 !important;
    transform: translateX(5px);
}

.dropdown-item.active {
    background: #e30614 !important;
    color: #fff !important;
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Info Text */
.container-xxl p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form Styling */
form.needs-validation {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.mb-3.form-floating {
    position: relative;
}

.form-floating > .form-control {
    height: 60px;
    padding: 20px 16px 8px 16px;
    font-size: 16px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-floating > .form-control:focus {
    border-color: #e30614;
    box-shadow: 0 0 0 3px rgba(227, 6, 20, 0.1);
    transform: translateY(-2px);
}

.form-floating > label {
    padding: 18px 16px;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: #e30614;
    font-weight: 600;
}

label.req::after {
    content: "*";
    color: #e30614;
    margin-left: 4px;
}

/* Submit Button */
.btn-primary.submitButton {
    background: #e30614 !important;
    border: none !important;
    padding: 14px 40px !important;
    font-size: 18px !important;
    font-weight: 600;
    border-radius: 8px !important;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary.submitButton::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;
}

.btn-primary.submitButton:hover {
    background: #b90510 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 6, 20, 0.4);
}

.btn-primary.submitButton:hover::before {
    left: 100%;
}

.btn-primary.submitButton:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 6, 20, 0.3);
}

/* Additional Info Text */
.container-xxl > p:not(:first-of-type) {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e30614;
    margin-top: 30px;
    animation: slideInLeft 0.6s ease-out 0.6s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* List Styling */
.container-xxl ul {
    margin: 20px 0;
    padding-left: 20px;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.container-xxl li {
    font-size: 14px;
    text-align: left;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 2px solid #e6e6e6;
    transition: all 0.3s ease;
}

.container-xxl li:hover {
    border-left-color: #e30614;
    background: #f8f8f8;
    padding-left: 15px;
    border-radius: 0 4px 4px 0;
}

.font11 {
    font-size: 14px !important;
}

/* Email Link */
.container-xxl a[href^="mailto"] {
    color: #e30614;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.container-xxl a[href^="mailto"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e30614;
    transition: width 0.3s ease;
}

.container-xxl a[href^="mailto"]:hover {
    color: #b90510;
}

.container-xxl a[href^="mailto"]:hover::after {
    width: 100%;
}

.tobasket-function .d-flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
}

@media (max-width: 576px) {
    .quantity-control  {
        margin-bottom: 0 !important;
    }
}

.size-circle {
    font-size: 14px !important;
    padding: 19px;
}

.details .accordeon .collapse {
    color: white !important;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container-xxl.py-5 {
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }
    
    .h3.page-header {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .d-flex {
      flex-direction: row;
    }
    
    .button-col {
        margin-bottom: 20px;
    }
    
    .dropdown .btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        width: 100% !important;
    }
    
    .form-floating > .form-control {
        height: 56px;
    }
    
    .btn-primary.submitButton {
        width: 100%;
        padding: 16px 20px !important;
    }
}

/* Form Validation Styles */
.form-control:invalid {
    border-color: #e30614;
}

.form-control:valid {
    border-color: #28a745;
}

.invalid-feedback {
    color: #e30614;
    font-size: 14px;
    margin-top: 5px;
}

/* Loading State for Button */
.btn-primary.submitButton.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary.submitButton.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* BACK TO SHOP BUTTON - GREY (Matching your existing back button style) */
#backToShop {
    background: #707070 !important;
    padding: 12px 32px !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    color: #fff !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(112, 112, 112, 0.2);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

#backToShop::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;
}

#backToShop:hover {
    background: #505050 !important;
    opacity: 1 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
    gap: 10px;
}

#backToShop:hover::before {
    left: 100%;
}

#backToShop:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(112, 112, 112, 0.2);
}

/* SVG Icon Styling */
#backToShop svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#backToShop:hover svg {
    transform: translateX(-3px);
}

/* Loading State */
#backToShop.loading {
    pointer-events: none;
    opacity: 0.8;
}

#backToShop.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Focus State for Accessibility */
#backToShop:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(112, 112, 112, 0.3), 
                0 3px 10px rgba(112, 112, 112, 0.2);
}




/* ============================
   LOGIN PAGE STYLING
=============================== */



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.h2 {
    font-size: 32px !important;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px !important;
    position: relative;
    padding-bottom: 15px;
}

.h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #e30614;
    border-radius: 2px;
}

/* Card Group Layout */
.card-group.mb-5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px !important;
}

.card.card-lg {
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.card.card-lg:hover {
    box-shadow: 0px 12px 35px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

/* Card Header */
.card-header {
    background: #f8f8f8 !important;
    border-bottom: 1px solid #e6e6e6 !important;
    padding: 20px 25px !important;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.h4.card-title {
    font-size: 20px !important;
    font-weight: 600;
    margin: 0;
    color: #333;
}

/* Card Body */
.card-body {
    padding: 30px 25px !important;
}

.card-body p {
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Form Styling */
form.needs-validation {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



.form-floating > .form-control {
    height: 58px;
    padding: 20px 16px 8px 16px;
    font-size: 16px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-floating > .form-control:focus {
    border-color: #e30614;
    box-shadow: 0 0 0 3px rgba(227, 6, 20, 0.1);
    transform: translateY(-2px);
}

.form-floating > label {
    padding: 18px 16px;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: #e30614;
    font-weight: 600;
}

label.req::after {
    content: "*";
    color: #e30614;
    margin-left: 4px;
}

/* Forgot Password Link */
#forgotPasswordLink {
    color: #e30614 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

#forgotPasswordLink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e30614;
    transition: width 0.3s ease;
}

#forgotPasswordLink:hover {
    color: #b90510 !important;
    transform: translateX(3px);
}

#forgotPasswordLink:hover::after {
    width: 100%;
}

/* Checkbox Styling */
.form-check {
    margin-bottom: 25px !important;
    padding-left: 30px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -30px;
    margin-top: 2px;
    border: 2px solid #707070;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #e30614;
    border-color: #e30614;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(227, 6, 20, 0.1);
    border-color: #e30614;
}

.form-check-label {
    font-size: 15px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check:hover .form-check-label {
    color: #333;
}

/* Login Button */
#loginButton {
    background: #e30614 !important;
    border: none !important;
    padding: 14px 40px !important;
    font-size: 18px !important;
    font-weight: 600;
    border-radius: 8px !important;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(227, 6, 20, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
}

#loginButton::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;
}

#loginButton:hover {
    background: #b90510 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 6, 20, 0.4);
}

#loginButton:hover::before {
    left: 100%;
}

#loginButton:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 6, 20, 0.3);
}

/* Create Account Button */
#openAccountLink {
    background: #707070 !important;
    border: none !important;
    padding: 14px 35px !important;
    font-size: 16px !important;
    font-weight: 600;
    border-radius: 8px !important;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(112, 112, 112, 0.25);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

#openAccountLink::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;
}

#openAccountLink:hover {
    background: #505050 !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(112, 112, 112, 0.35);
    text-decoration: none;
}

#openAccountLink:hover::before {
    left: 100%;
}

#openAccountLink:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(112, 112, 112, 0.3);
}

/* Loading States */
#loginButton.loading,
#openAccountLink.loading {
    pointer-events: none;
    opacity: 0.8;
}

#loginButton.loading::after,
#openAccountLink.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .card-group.mb-5 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .container-xxl {
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }
    
    .h2 {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }
    
    .card-body {
        padding: 25px 20px !important;
    }
    
    .card-header {
        padding: 18px 20px !important;
    }
}

@media (max-width: 768px) {
    .container-xxl {
        padding: 20px 15px !important;
    }
    
    .h2 {
        font-size: 24px !important;
        text-align: center;
    }
    
    .h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .form-check {
        padding-left: 25px;
    }
    
    .form-check-input {
        margin-left: -25px;
    }
    
    #loginButton,
    #openAccountLink {
        padding: 16px 25px !important;
        font-size: 16px !important;
    }
}

/* Focus States for Accessibility */
.form-control:focus,
.form-check-input:focus,
#loginButton:focus,
#openAccountLink:focus,
#forgotPasswordLink:focus {
    outline: none;
}

#loginButton:focus {
    box-shadow: 0 0 0 3px rgba(227, 6, 20, 0.3), 
                0 4px 15px rgba(227, 6, 20, 0.3);
}

#openAccountLink:focus {
    box-shadow: 0 0 0 3px rgba(112, 112, 112, 0.3), 
                0 4px 12px rgba(112, 112, 112, 0.25);
}

#forgotPasswordLink:focus {
    box-shadow: 0 0 0 2px rgba(227, 6, 20, 0.2);
    border-radius: 3px;
}



/* ============================
   REGISTRATION PAGE STYLING - IMPROVED
=============================== */

.container-xxl.py-5 {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}

/* Page Header */
.h3 {
    font-size: 32px !important;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px !important;
    text-align: center;
}

/* Main Card */
.card.card-lg {
    border-radius: 15px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Headers */
.card-header {
    background: #f8f8f8 !important;
    border-bottom: 2px solid #e30614 !important;
    padding: 25px 30px !important;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.h4.card-title {
    font-size: 22px !important;
    font-weight: 700;
    margin: 0;
    color: #333;
}

/* Card Body */
.card-body {
    padding: 40px 30px !important;
}

.max-600 {
    max-width: 100%;
}



.form-floating > .form-control,
.form-floating > .form-select {
    height: 60px;
    padding: 25px 16px 10px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: #e30614;
    box-shadow: 0 0 0 4px rgba(227, 6, 20, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.form-floating > label {
    padding: 20px 16px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
    color: #e30614;
    font-weight: 600;
}

label.req::after {
    content: " *";
    color: #e30614;
}

/* Form Select Styling */
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e30614' viewBox='0 0 20 20'%3e%3cpath stroke='%23e30614' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

/* Row Layout */
.row.gx-2 {
    margin-left: -8px;
    margin-right: -8px;
}

.row.gx-2 > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Checkbox Styling */
.form-check {
    margin-bottom: 25px !important;
    padding-left: 35px;
}

.form-check-input {
    width: 22px;
    height: 22px;
    margin-left: -35px;
    margin-top: 3px;
    border: 2px solid #707070;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #e30614;
    border-color: #e30614;
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(227, 6, 20, 0.2);
    border-color: #e30614;
}

.form-check-label {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
    padding-top: 3px;
}

.form-check:hover .form-check-label {
    color: #e30614;
}

/* Helper Text */
.text-muted {
    font-size: 14px;
    color: #888 !important;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.5;
    padding-left: 35px;
}

/* Birth Date Section */
.oxDate {
    margin-bottom: 30px !important;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e30614;
}

.oxDate label {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.oxDate .form-floating {
    margin-bottom: 0;
}

/* Required Fields Warning */
.req-warning {
    font-size: 16px;
    color: #e30614;
    font-weight: 600;
    margin-bottom: 25px !important;
    text-align: center;
    padding: 15px;
    background: #fff5f5;
    border-radius: 10px;
    border: 2px solid #e30614;
}

/* Submit Button */
#accUserSaveTop {
    background: #e30614 !important;
    border: none !important;
    padding: 18px 50px !important;
    font-size: 20px !important;
    font-weight: 700;
    border-radius: 12px !important;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(227, 6, 20, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0 auto;
    display: block;
}

#accUserSaveTop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

#accUserSaveTop:hover {
    background: #b90510 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(227, 6, 20, 0.5);
}

#accUserSaveTop:hover::before {
    left: 100%;
}

#accUserSaveTop:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 15px rgba(227, 6, 20, 0.4);
}

/* Form Sections Animation */
.card-body {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-xxl.py-5 {
        padding: 30px 15px !important;
    }
    
    .h3 {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }
    
    .card-body {
        padding: 30px 20px !important;
    }
    
    .card-header {
        padding: 20px 25px !important;
        font-size: 20px;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        height: 56px;
        font-size: 15px;
    }
    
    #accUserSaveTop {
        padding: 16px 40px !important;
        font-size: 18px !important;
        max-width: 100%;
    }
    
    .row.gx-2 {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .row.gx-2 > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 576px) {
    .h3 {
        font-size: 24px !important;
    }
    
    .card-body {
        padding: 25px 15px !important;
    }
    
    .card-header {
        padding: 18px 20px !important;
        font-size: 18px;
    }
    
    .form-check {
        padding-left: 30px;
    }
    
    .form-check-input {
        margin-left: -30px;
    }
    
    .oxDate {
        padding: 15px;
    }
}

/* Focus States */
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
#accUserSaveTop:focus {
    outline: none;
}

#accUserSaveTop:focus {
    box-shadow: 0 0 0 4px rgba(227, 6, 20, 0.3), 
                0 6px 20px rgba(227, 6, 20, 0.4);
}

/* Field Hover Effects */
.form-floating:hover .form-control,
.form-floating:hover .form-select {
    border-color: #d0d0d0;
    background: #f5f5f5;
}

/* Success State for Fields */
.form-control:valid {
    border-color: #28a745;
}

/* Error State for Fields */
.form-control:invalid:not(:focus) {
    border-color: #e30614;
}


.dropdown-menu.dropdown-menu-end.dropdown-menu-arrow form .btn.btn-primary {
    display: none !important;
}

body {
    overflow-x: hidden;
}

.hero-section {
    overflow: visible !important;
    padding: 0px 0 0px !important;
}

a.small.forgotPasswordOpener {
    color: rgb(51, 51, 51) !important;
    font-size: 16px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
    padding-left: 11px;
}




.dropdown-menu.dropdown-menu-md-end {
    overflow: hidden !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.dropdown-menu.dropdown-menu-md-end.show {
    overflow: hidden !important;
    transition: none !important;
    animation: none !important;
    transform: translate(0px, 46px) !important; /* To keep position */
}

.col-12.col-md-6.col-lg-4.col-xl-3.product-info-box .h2::after {
    content: none !important;
    display: none !important;
}


.tabs a {
    font-size: 32px !important;
    color: white;
    transition: color 0.25s ease-in-out !important;
}

.tabs a:hover {
    color: #FF0000 !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    opacity: 1 !important;
}


#attributes-inner span {
    color: #ffffff !important;
}


.article-list .locator .btn-group {
    display: flex !important;
    gap: 20px !important;
}


.list-container.container.product-section .row.grid-row.grid-view .col.mb-3 {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.list-container.container.product-section .row.grid-row.grid-view .col.mb-3:hover {
    border-color: #e30614;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.article-list.pb-5 .list-container .row.grid-row.grid-view {
    gap: 20px;
}

.product-card{
        padding: 0 !important;
  }

@media (max-width: 768px) {
    .grid-row .col {
        flex: 0 1 100%;
    }
.product-card{
        padding: 10px !important;
  }
.product-section {
    margin: 42px 0px !important;
}
.tabs a {
    font-size: 18px !important;
}

.container-xxl ul {
    padding-left: 0px !important;
}
.tobasket-function .quantity-control {
    width: 40% !important;
}

.quantity-control > input {
    margin: 0 !important;
}
.col-12.col-md-6.col-lg-4.col-xl-3.product-info-box .price-wrapper {
    display: block !important;
}



}



.functions.text-end a.btn.btn-primary.w-100.mb-3 {
    background-color: #e30614 !important; /* red brand color */
    color: #fff !important;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    padding: 12px 10px;
    font-size: 16px;
    font-family: "Frutiger LT Condensed", Arial, sans-serif;
    transition: all 0.3s ease;
}

/* Hover effect */
.functions.text-end a.btn.btn-primary.w-100.mb-3:hover {
    background-color: #c20512 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Active click effect */
.functions.text-end a.btn.btn-primary.w-100.mb-3:active {
    transform: scale(0.97);
}

.row .col-12.col-md-8.order-md-1.col-lg-5 {
    text-align: left;
}

.product-info-box .details-title {
    margin-bottom: 0px !important;
}

#cross .row.grid-row.grid-view {
    gap: 20px !important;
}

@media (max-width: 768px) {

    /* Main Image Fix */
    .col-12.col-md-6.col-lg-6.col-xl-6 .gallery .wrap figure img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }

    /* Thumbnails row below main image */
    .col-12.col-md-6.col-lg-6.col-xl-6 .gallery .thumbnails {
        display: flex;
        gap: 6px;
        margin-top: 12px;
        overflow-x: auto;     /* scroll if many items */
        flex-wrap: nowrap;    /* single row */
        padding-bottom: 10px;
    }

    /* Hide scrollbar for clean look */
    .col-12.col-md-6.col-lg-6.col-xl-6 .gallery .thumbnails::-webkit-scrollbar {
        display: none;
    }

    /* Thumbnail images */
    .col-12.col-md-6.col-lg-6.col-xl-6 .gallery .thumb img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #ccc;
    }

    /* Active thumbnail highlight */
    .col-12.col-md-6.col-lg-6.col-xl-6 .gallery .gallery-helper:checked + .thumb img {
        border-color: #e30614;
    }
    
    .size-selector {
        justify-content: start !important;
    } 
}


/* ---------------- Basket Page – Mobile Responsive Only ---------------- */
@media (max-width: 576px) {

    /* Full item block stacked */
    #basket_list .basketitemrow {
        display: block !important;
        padding: 15px 10px;
    }

    /* Product image center & bigger */
    #basket_list .col-img {
        text-align: center;
        margin-bottom: 15px;
    }

    #basket_list .col-img img {
        width: 90px;
        height: 90px;
        object-fit: contain;
    }

    /* Product title spacing */
    #basket_list .h5 {
        font-size: 17px;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Description block full width */
    #basket_list .basket-item-desc {
        margin-bottom: 15px;
    }

    /* Quantity section full width */
    #basket_list .quantity {
        margin-top: 10px;
    }

    #basket_list .quantity .input-group {
        justify-content: center;
        gap: 10px;
    }

    #basket_list .quantity input {
        width: 60px;
        margin: 0;
    }

    /* Remove + Favorite buttons adjust */
    #basket_list .btn-remove {
        padding: 6px 8px;
    }

    /* Price mobil friendly */
    #basket_list .totalPrice {
        text-align: center;
        margin-top: 15px;
    }

    #basket_list .totalPrice strong {
        font-size: 20px;
    }

    #basket_list .basketitemrow .row {
        flex-direction: column !important;
    }
    
    .quantity .input-group {
        width: 271px;
    }
    
 
    .basket .quantity {
    max-width: 277px;
    }
  
 
    
}



