@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

body {
    font-family: "Roboto", sans-serif;
}

::-webkit-scrollbar {
    width: 0.625rem;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #222;
}

a {
    text-decoration: none;
}

#page {
    position: relative;
}

.display-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.display-flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display-flex-shrink {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.transitions {
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
}

.container,
.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1420px;
    }
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    width: 100%;
    display: block;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.product-card-less {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card-less:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 2.5rem rgba(20, 41, 123, 0.15);
    border-color: #14297b;
}

.product-card-less.out-of-stock-card {
    opacity: 0.7;
}

.product-card-less.out-of-stock-card .product-image-wrapper {
    filter: grayscale(0.5);
}

.product-card-less .product-image-wrapper {
    position: relative;
    background: #fafafa;
    overflow: hidden;
}

.product-card-less .product-image-wrapper .product-image-link {
    display: block;
    position: relative;
}

.product-card-less .product-image-wrapper .product-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9375rem;
    background: #fff;
    transition: transform 0.4s;
}

.product-card-less .product-image-wrapper .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    border-radius: 10px;
}

.product-card-less .product-image-wrapper .product-image:hover img {
    transform: scale(1.05);
}

.product-card-less .product-image-wrapper .sale-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #ff4248;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    box-shadow: 0 0.25rem 0.75rem rgba(255, 66, 72, 0.3);
    animation: pulseBadge 2s infinite;
}

@media (max-width: 991px) {
    .product-card-less .product-image-wrapper .sale-badge {
        left: 0.5rem;
        top: 0.5rem;
        right: auto;
        border-radius: 8px;
    }
}

.product-card-less .product-image-wrapper .sale-badge svg {
    width: 0.75rem;
    height: 0.75rem;
}

.product-card-less .product-image-wrapper .stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(0.125rem);
}

.product-card-less .product-image-wrapper .stock-overlay .stock-badge {
    background: #f5f5f5;
    color: #999;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e0e0e0;
}

.product-card-less .product-image-wrapper .stock-overlay .stock-badge svg {
    stroke: #999;
}

.product-card-less .product-info {
    padding: 1rem 1rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-less .product-info .product-title-link {
    text-decoration: none;
}

.product-card-less .product-info .product-title {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
    margin: 0;
}

.product-card-less .product-info .product-title:hover {
    color: #14297b;
}

.product-card-less .product-info .product-price {
    margin-top: auto;
    font-size: 1.25rem;
    font-weight: 800;
    color: #14297b;
    display: flex;
    align-items: baseline;
    gap: 0.3125rem;
    flex-wrap: wrap;
}

.product-card-less .product-info .product-price del {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

.product-card-less .product-info .product-price ins {
    text-decoration: none;
    color: #ff4248;
}

.product-card-less .product-info .product-price .price-unit {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #666;
}

.product-card-less .product-actions {
    padding: 0.75rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.product-card-less .quantity-selector {
    flex: 1;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0.375rem;
    gap: 0.25rem;
    border: 2px solid #e8ebf3;
    transition: all 0.3s;
}

.product-card-less .quantity-selector:hover {
    border-color: #14297b;
    box-shadow: 0 0.125rem 0.5rem rgba(20, 41, 123, 0.1);
}

.product-card-less .quantity-selector .qty-btn {
    width: 2.125rem;
    height: 2.125rem;
    background: #e8ebf3;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 0;
}

.product-card-less .quantity-selector .qty-btn svg {
    stroke: #14297b;
    transition: stroke 0.3s;
}

.product-card-less .quantity-selector .qty-btn:hover {
    background: #14297b;
    transform: scale(1.1);
}

.product-card-less .quantity-selector .qty-btn:hover svg {
    stroke: white;
}

.product-card-less .quantity-selector .qty-btn:active {
    transform: scale(0.9);
}

.product-card-less .quantity-selector .qty-display {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.product-card-less .quantity-selector .qty-input {
    width: 2.8125rem;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: #14297b;
    padding: 0;
    -moz-appearance: textfield;
}

.product-card-less .quantity-selector .qty-input::-webkit-outer-spin-button,
.product-card-less .quantity-selector .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card-less .quantity-selector .qty-input:focus {
    outline: none;
}

.product-card-less .quantity-selector .qty-unit {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.product-card-less .add-to-cart-btn {
    width: 100%;
    background: #14297b;
    color: white;
    border: none;
    height: 2.875rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.2);
}

.product-card-less .add-to-cart-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: white;
    transition: transform 0.3s;
}

@media (max-width: 1200px) {
    .product-card-less .add-to-cart-btn .btn-text {
        display: none;
    }
}

.product-card-less .add-to-cart-btn:hover {
    background: #ff4248;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 66, 72, 0.3);
}

.product-card-less .add-to-cart-btn:hover svg {
    transform: scale(1.1);
}

.product-card-less .add-to-cart-btn:active {
    transform: translateY(0);
}

.product-card-less .add-to-cart-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.product-card-less .add-to-cart-btn.loading svg {
    animation: cartBounce 1s infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes cartBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.25rem);
    }
}

@media (max-width: 991px) {
    .product-card-less .product-info {
        padding: 0.5rem 0.5rem 0.5rem;
    }

    .product-card-less .product-info .product-title {
        font-size: 0.875rem;
        min-height: auto;
    }

    .product-card-less .product-info .product-price {
        font-size: 1.125rem;
    }

    .product-card-less .product-actions {
        padding: 0.625rem 0.875rem 0.875rem;
    }

    .product-card-less .product-image {
        padding: 0.5rem !important;
    }

    .product-card-less .quantity-selector .qty-btn {
        width: 2rem;
        height: 2rem;
    }

    .product-card-less .quantity-selector .qty-input {
        width: 2.5rem;
        font-size: 0.9375rem;
    }

    .product-card-less .quantity-selector .qty-unit {
        display: none;
    }

    .product-card-less .add-to-cart-btn {
        height: 2.625rem;
        font-size: 0.875rem;
    }

    .product-card-less .add-to-cart-btn svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

.mobile-cart-action {
    display: none;
}

@media (max-width: 768px) {
    .product-card-less .desktop-actions {
        display: none !important;
    }

    .product-card-less .mobile-cart-action {
        display: block;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 10;
    }
}

.mobile-cart-action .mobile-cart-add {
    width: 2.375rem;
    height: 2.375rem;
    background: #14297b;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.25);
    padding: 0;
}

.mobile-cart-action .mobile-cart-add svg {
    stroke: white;
    transition: transform 0.2s;
}

.mobile-cart-action .mobile-cart-add:hover {
    background: #ff4248;
    transform: scale(1.08);
    box-shadow: 0 0.375rem 1rem rgba(255, 66, 72, 0.35);
}

.mobile-cart-action .mobile-cart-add:active {
    transform: scale(0.95);
}

.mobile-cart-action .mobile-cart-add.loading {
    opacity: 0.7;
    pointer-events: none;
}

.mobile-cart-action .mobile-cart-add.loading svg {
    animation: spinAdd 0.8s linear infinite;
}

.mobile-cart-action .mobile-cart-controls {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.432);
    border-radius: 12px;
    padding: 0.375rem;
    box-shadow: 0 0.25rem 1rem rgba(20, 41, 123, 0.2);
    border: 2px solid #14297b;
    animation: slideInControls 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0.1875rem);
}

.mobile-cart-action .mobile-qty-btn {
    width: 2rem;
    height: 2rem;
    background: #e8ebf3;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.mobile-cart-action .mobile-qty-btn svg {
    stroke: #14297b;
    transition: all 0.2s;
}

.mobile-cart-action .mobile-qty-btn:hover {
    background: #14297b;
}

.mobile-cart-action .mobile-qty-btn:hover svg {
    stroke: white;
}

.mobile-cart-action .mobile-qty-btn:active {
    transform: scale(0.9);
}

.mobile-cart-action .mobile-qty-btn .trash-icon {
    display: none;
    stroke: #ff4248;
}

.mobile-cart-action .mobile-qty-btn .minus-icon {
    display: block;
}

.mobile-cart-action .mobile-qty-minus.show-trash {
    background: rgba(255, 66, 72, 0.1);
}

.mobile-cart-action .mobile-qty-minus.show-trash .minus-icon {
    display: none;
}

.mobile-cart-action .mobile-qty-minus.show-trash .trash-icon {
    display: block;
}

.mobile-cart-action .mobile-qty-minus.show-trash:hover {
    background: #ff4248;
}

.mobile-cart-action .mobile-qty-minus.show-trash:hover .trash-icon {
    stroke: white;
}

.mobile-cart-action .mobile-qty-value {
    width: 2rem;
    height: 1.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #14297b;
    background: #e8ebf3;
    border-radius: 6px;
}

.mobile-cart-action.active .mobile-cart-add {
    display: none;
}

.mobile-cart-action.active .mobile-cart-controls {
    display: flex;
}

@keyframes spinAdd {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInControls {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-0.625rem);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    margin-bottom: 1.25rem;
}

.woocommerce-message {
    padding: 0.9375rem 1.25rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 10px;
    font-size: 0.875rem;
}

.woocommerce-error {
    padding: 0.9375rem 1.25rem;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 10px;
    font-size: 0.875rem;
    list-style: none;
    margin: 0 0 1.25rem 0;
}

.woocommerce-error li {
    margin: 0;
}

.woocommerce-info {
    padding: 0.9375rem 1.25rem;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 10px;
    font-size: 0.875rem;
}

.toast-notification {
    position: fixed;
    top: 5.625rem;
    right: -25rem;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    z-index: 100000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 4px solid;
}

.toast-notification.show {
    right: 1.5rem;
}

@media (max-width: 991px) {
    .toast-notification {
        max-width: calc(100% - 24px);
        min-width: calc(100% - 24px);
        top: 5rem;
    }

    .toast-notification.show {
        right: 0.75rem;
    }
}

.toast-notification .toast-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-notification .toast-content {
    flex: 1;
    min-width: 0;
}

.toast-notification .toast-message {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
    margin-bottom: 0.625rem;
}

.toast-notification .toast-message strong {
    font-weight: 700;
    color: #1e293b;
}

.toast-notification .toast-message .qty {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.toast-notification .toast-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #14297b 0%, #0e1d58 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 0.125rem 0.5rem rgba(20, 41, 123, 0.2);
}

.toast-notification .toast-cart-btn:hover {
    transform: translateX(0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.3);
}

.toast-notification .toast-close {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 0;
}

.toast-notification .toast-close svg {
    stroke: #999;
    transition: stroke 0.3s;
}

.toast-notification .toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.toast-notification .toast-close:hover svg {
    stroke: #333;
}

.toast-notification.toast-success {
    border-left-color: #10b981;
}

.toast-notification.toast-success .toast-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toast-notification.toast-success .toast-icon svg {
    stroke: white;
}

.toast-notification.toast-error {
    border-left-color: #ef4444;
}

.toast-notification.toast-error .toast-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.toast-notification.toast-error .toast-icon svg {
    stroke: white;
}

.toast-notification.toast-info {
    border-left-color: #3b82f6;
}

.toast-notification.toast-info .toast-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.toast-notification.toast-info .toast-icon svg {
    stroke: white;
}

.toast-notification.toast-warning {
    border-left-color: #f59e0b;
}

.toast-notification.toast-warning .toast-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.toast-notification.toast-warning .toast-icon svg {
    stroke: white;
}

.side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.25rem);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-cart {
    position: fixed;
    top: 0;
    right: -30rem;
    width: 28.75rem;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999999999;
    display: flex;
    flex-direction: column;
    box-shadow: -0.625rem 0 2.5rem rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
    .side-cart {
        width: 100%;
        right: -100%;
    }
}

.side-cart.active {
    right: 0;
}

.side-cart .side-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .side-cart .side-cart-header {
        padding: 0.75rem;
    }
}

.side-cart .side-cart-header .side-cart-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.side-cart .side-cart-header .side-cart-title .side-cart-count {
    font-weight: 500;
    color: #64748b;
}

.side-cart .side-cart-header .side-cart-close {
    width: 2.5rem;
    height: 2.5rem;
    background: #f8fafc;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.side-cart .side-cart-header .side-cart-close svg {
    stroke: #64748b;
    transition: stroke 0.3s;
}

.side-cart .side-cart-header .side-cart-close:hover {
    background: #ff4248;
    transform: rotate(90deg);
}

.side-cart .side-cart-header .side-cart-close:hover svg {
    stroke: white;
}

.side-cart .side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

@media (max-width: 991px) {
    .side-cart .side-cart-items {
        padding: 0.75rem;
    }
}

.side-cart .side-cart-items::-webkit-scrollbar {
    width: 0.375rem;
}

.side-cart .side-cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.side-cart .side-cart-items::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.side-cart .side-cart-items::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.side-cart .side-cart-item {
    display: flex;
    gap: 0.875rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

@media (max-width: 991px) {
    .side-cart .side-cart-item {
        padding: 0.625rem 0;
    }
}

.side-cart .side-cart-item:last-child {
    border-bottom: none;
}

.side-cart .side-cart-item .item-remove {
    position: absolute;
    top: 0.75rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: #fee2e2;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
    padding: 0;
    transform: translateX(-0.3125rem);
}

@media (max-width: 991px) {
    .side-cart .side-cart-item .item-remove {
        opacity: 1 !important;
    }
}

.side-cart .side-cart-item .item-remove svg {
    stroke: #ff4248;
}

.side-cart .side-cart-item .item-remove:hover {
    background: #ff4248;
}

.side-cart .side-cart-item .item-remove:hover svg {
    stroke: white;
}

.side-cart .side-cart-item:hover .item-remove {
    opacity: 1;
    transform: translateX(0);
}

.side-cart .side-cart-item .item-image {
    width: 4.375rem;
    height: 4.375rem;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-cart .side-cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-cart .side-cart-item .item-image .no-image {
    font-size: 1.75rem;
}

.side-cart .side-cart-item .item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-cart .side-cart-item .item-details .item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-cart .side-cart-item .item-details .item-qty-price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
}

.side-cart .side-cart-item .item-details .item-quantity {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.side-cart .side-cart-item .item-details .item-quantity .qty-btn {
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.side-cart .side-cart-item .item-details .item-quantity .qty-btn svg {
    stroke: #64748b;
    transition: stroke 0.3s;
}

.side-cart .side-cart-item .item-details .item-quantity .qty-btn:hover {
    background: #14297b;
    border-radius: 8px;
}

.side-cart .side-cart-item .item-details .item-quantity .qty-btn:hover svg {
    stroke: white;
}

.side-cart .side-cart-item .item-details .item-quantity .qty-value {
    min-width: 30px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #14297b;
}

.side-cart .side-cart-item .item-details .qty-unit {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.side-cart .side-cart-item .item-details .item-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #14297b;
    margin-right: 0;
    margin-left: auto;
}

.side-cart .side-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2.5rem;
}

.side-cart .side-cart-empty .empty-icon {
    margin-bottom: 1.25rem;
}

.side-cart .side-cart-empty .empty-icon svg {
    stroke: #cbd5e1;
}

.side-cart .side-cart-empty p {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 1.5rem;
}

.side-cart .side-cart-empty .continue-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: #14297b;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.side-cart .side-cart-empty .continue-btn:hover {
    background: #ff4248;
    transform: translateY(-0.125rem);
}

.side-cart .side-cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .side-cart .side-cart-footer {
        padding: 0.75rem;
    }
}

.side-cart .side-cart-footer .coupon-section {
    margin-bottom: 1rem;
}

.side-cart .side-cart-footer .coupon-section .coupon-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s;
}

.side-cart .side-cart-footer .coupon-section .coupon-toggle svg {
    transition: transform 0.3s;
}

.side-cart .side-cart-footer .coupon-section .coupon-toggle.active {
    border-color: #14297b;
    color: #14297b;
}

.side-cart .side-cart-footer .coupon-section .coupon-toggle.active svg {
    transform: rotate(180deg);
}

.side-cart .side-cart-footer .coupon-section .coupon-form {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.625rem;
}

.side-cart .side-cart-footer .coupon-section .coupon-form .coupon-input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
}

.side-cart .side-cart-footer .coupon-section .coupon-form .coupon-input:focus {
    outline: none;
    border-color: #14297b;
}

.side-cart .side-cart-footer .coupon-section .coupon-form .coupon-apply {
    padding: 0.625rem 1.125rem;
    background: #14297b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.side-cart .side-cart-footer .coupon-section .coupon-form .coupon-apply:hover {
    background: #0d1a4f;
}

.side-cart .side-cart-footer .subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.side-cart .side-cart-footer .subtotal-row .subtotal-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.side-cart .side-cart-footer .subtotal-row .subtotal-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #14297b;
}

.side-cart .side-cart-footer .shipping-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0 0 1rem;
}

.side-cart .side-cart-footer .checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: #14297b;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.25);
    margin-bottom: 0.625rem;
}

.side-cart .side-cart-footer .checkout-btn:hover {
    background: #ff4248;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 66, 72, 0.3);
}

.side-cart .side-cart-footer .view-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.side-cart .side-cart-footer .view-cart-btn:hover {
    color: #14297b;
    background: #f1f5f9;
}

.minimum-order-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.minimum-order-notice.complete {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
}

.minimum-order-notice.complete .min-order-icon {
    background: #10b981;
    color: white;
}

.minimum-order-notice.complete .progress-bar {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.minimum-order-notice.complete .min-order-text.success {
    color: #059669;
    font-weight: 700;
}

.minimum-order-notice .min-order-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.minimum-order-notice .min-order-icon {
    width: 1.75rem;
    height: 1.75rem;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.minimum-order-notice .min-order-icon svg {
    stroke: currentColor;
}

.minimum-order-notice .min-order-text {
    font-size: 0.8125rem;
    color: #92400e;
    flex: 1;
}

.minimum-order-notice .min-order-text strong {
    color: #78350f;
}

.minimum-order-notice .min-order-progress {
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1);
}

.minimum-order-notice .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.minimum-order-notice .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s infinite;
}

.minimum-order-notice .min-order-remaining {
    font-size: 0.75rem;
    color: #92400e;
    margin-top: 0.625rem;
    text-align: center;
}

.minimum-order-notice .min-order-remaining strong {
    color: #ff4248;
    font-weight: 700;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.checkout-btn.disabled {
    background: #cbd5e1 !important;
    cursor: not-allowed !important;
    opacity: 0.8;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn.disabled:hover {
    transform: none !important;
    background: #cbd5e1 !important;
}

.checkout-btn.disabled svg {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.9375rem 0;
}

.site-header .header-single-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-header .left {
    width: 20%;
}

@media (max-width: 991px) {
    .site-header .left {
        width: fit-content !important;
    }
}

.site-header .mid {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    width: 55.3%;
}

@media (max-width: 1590px) {
    .site-header .mid {
        width: 48%;
    }
}

.site-header .right {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    width: 20%;
    justify-content: flex-end;
}

.site-branding .custom-logo-link {
    display: block;
}

.site-branding .custom-logo-link img {
    height: 2.875rem;
    width: auto;
    object-fit: contain;
}

@media (max-width: 370px) {
    .site-branding .custom-logo-link img {
        height: 2.2rem;
    }
}

.categories-btn {
    background: #14297b;
    color: white;
    border: none;
    padding: 0 1.25rem;
    height: 3rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.categories-btn .menu-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.categories-btn:hover {
    background: #ff4248;
    transform: translateY(-0.0625rem);
}

.header-search-wrapper {
    position: relative;
    width: 100%;
}

.header-search-wrapper .header-search-form {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #14297b;
    border-radius: 8px;
    padding: 0 0.9375rem;
    height: 3rem;
    transition: all 0.3s;
}

.header-search-wrapper .header-search-form:focus-within {
    box-shadow: 0 0 0 0.1875rem rgba(0, 12, 184, 0.15);
}

.header-search-wrapper .header-search-form .search-icon {
    margin-right: 0.625rem;
    margin-bottom: 0.1875rem;
}

.header-search-wrapper .header-search-form .search-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.header-search-wrapper .header-search-form .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    background: transparent;
}

.header-search-wrapper .header-search-form .search-input::placeholder {
    color: #999;
}

.header-search-wrapper .search-autocomplete {
    position: absolute;
    top: calc(100.75%);
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.header-search-wrapper .search-autocomplete.active {
    display: block;
}

.header-search-wrapper .search-autocomplete .autocomplete-results {
    padding: 0.5rem;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item {
    padding: 0.75rem 0.9375rem;
    cursor: pointer;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    transition: all 0.2s;
    color: #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item:last-child {
    border-bottom: none;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-image {
    width: 3.125rem;
    height: 3.125rem;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-no-image {
    width: 3.125rem;
    height: 3.125rem;
    background: #e8ebf3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-text {
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-price {
    font-size: 0.875rem;
    color: #14297b;
    font-weight: 700;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-arrow {
    color: #666;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item .result-arrow img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    transition: all 0.3s;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item:hover {
    background: #e8ebf3;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item:hover .result-arrow {
    opacity: 1;
}

.header-search-wrapper .search-autocomplete .autocomplete-results .result-item:hover .result-arrow img {
    transform: rotate(90deg);
}

.header-search-wrapper .search-autocomplete .autocomplete-results .no-results {
    padding: 1.25rem;
    text-align: center;
    color: #666;
}

.cart-btn {
    background: white;
    border-radius: 8px;
    height: 3rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s;
    white-space: nowrap;
}

.cart-btn .cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-btn .cart-icon-wrapper .cart-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.cart-btn .cart-icon-wrapper .cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #14297b;
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.3125rem;
}

.cart-btn .cart-total {
    font-size: 1rem;
    font-weight: 700;
    color: #14297b;
}

.line {
    width: 0.0625rem;
    height: 3rem;
    background: #e5e5e5;
    display: block;
}

.account-btn {
    background: white;
    border-radius: 8px;
    height: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s;
    white-space: nowrap;
}

.account-btn .account-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.account-btn .account-text {
    font-size: 0.9375rem;
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3125rem;
}

.mobile-toggle span {
    width: 1.5625rem;
    height: 0.1875rem;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s;
}

.category-sidebar {
    position: fixed;
    top: 0;
    left: -26.25rem;
    width: 25rem;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8f9fd 100%);
    box-shadow: 0.25rem 0 2.5rem rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.category-sidebar.active {
    left: 0;
}

.category-sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 1.875rem;
    border-bottom: 3px solid #e8ebf3;
    background: linear-gradient(135deg, #14297b 0%, #0e1d58 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.1);
}

.category-sidebar .sidebar-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.category-sidebar .sidebar-header h3 svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.5rem;
}

.category-sidebar .sidebar-header .close-sidebar {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0.625rem);
}

.category-sidebar .sidebar-header .close-sidebar:hover {
    background: #ff4248;
    border-color: #ff4248;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0.25rem 0.75rem rgba(255, 66, 72, 0.4);
}

.category-sidebar .sidebar-categories {
    list-style: none;
    margin: 0;
    padding: 1.25rem 0;
}

.category-sidebar .sidebar-categories>li {
    position: relative;
    margin: 0 0.9375rem 0.5rem;
}

.category-sidebar .sidebar-categories>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    font-weight: 600;
    gap: 0.75rem;
    position: relative;
    border-radius: 12px;
    background: white;
    border: 2px solid transparent;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}

.category-sidebar .sidebar-categories>li>a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    background: #14297b;
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-sidebar .sidebar-categories>li>a:after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.category-sidebar .sidebar-categories>li>a:hover {
    background: linear-gradient(135deg, #e8ebf3 0%, #fff 100%);
    padding-left: 1.5rem;
    color: #14297b;
    border-color: #14297b;
    box-shadow: 0 0.375rem 1.25rem rgba(20, 41, 123, 0.15);
    transform: translateX(0.25rem);
}

.category-sidebar .sidebar-categories>li>a:hover:before {
    opacity: 1;
}

.category-sidebar .sidebar-categories>li>a:hover:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2314297B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    transform: translateX(0.25rem);
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>a:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-sidebar .sidebar-categories>li.menu-item-has-children:hover>.sub-menu {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.category-sidebar .sidebar-categories>li.menu-item-has-children:hover>a {
    background: linear-gradient(135deg, #e8ebf3 0%, #fff 100%);
    border-color: #14297b;
}

.category-sidebar .sidebar-categories>li.menu-item-has-children:hover>a:after {
    transform: rotate(180deg);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2314297B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    box-shadow: inset 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8125rem 1.25rem 0.8125rem 2.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li a:before {
    content: "";
    position: absolute;
    left: 1.25rem;
    width: 0.375rem;
    height: 0.375rem;
    background: #14297b;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 0 0 0.1875rem rgba(20, 41, 123, 0.1);
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li a:after {
    content: "";
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0;
    transform: translateX(-0.3125rem);
    transition: all 0.3s;
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li a:hover {
    background: white;
    padding-left: 2.75rem;
    color: #14297b;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li a:hover:before {
    background: #ff4248;
    transform: scale(1.5);
    box-shadow: 0 0 0 0.3125rem rgba(255, 66, 72, 0.15);
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li a:hover:after {
    opacity: 1;
    transform: translateX(0);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2314297B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.category-sidebar .sidebar-categories>li.menu-item-has-children>.sub-menu li:last-child a {
    margin-bottom: 0.5rem;
}

.category-sidebar::-webkit-scrollbar {
    width: 0.625rem;
}

.category-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 0.625rem 0;
}

.category-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #14297b 0%, #0d1a4f 100%);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.category-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff4248 0%, #ff0f17 100%);
}

.category-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(0.25rem);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .site-header .header-single-row {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 0.9375rem;
    }

    .site-header .header-single-row .left {
        width: 11.25rem;
    }

    .site-header .header-single-row .mid {
        width: 100%;
    }

    .site-header .header-single-row .right {
        width: auto;
        justify-content: flex-end;
        gap: 0.625rem;
    }

    .site-header .header-single-row .categories-btn {
        padding: 0 0.75rem;
    }

    .site-header .header-single-row .categories-btn .menu-text {
        display: none;
    }

    .site-header .header-single-row .cart-btn .cart-total,
    .site-header .header-single-row .account-btn .account-text {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.625rem 0;
    }

    .site-header .header-single-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.625rem;
        justify-content: space-between;
    }

    .site-header .header-single-row .left {
        order: 1;
        flex: 0 0 auto;
    }

    .site-header .header-single-row .right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }

    .site-header .header-single-row .mid {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        margin-top: 0.3125rem;
    }

    .header-search-wrapper .header-search-form {
        height: 2.625rem;
        border-color: #e0e0e0;
        background: #f8f9fa;
    }

    .header-search-wrapper .header-search-form:focus-within {
        background: white;
        border-color: #14297b;
    }

    .categories-btn {
        display: none;
    }

    .cart-btn,
    .account-btn {
        padding: 0.5rem;
        height: 2.5rem;
        background: transparent;
    }

    .cart-btn .cart-icon svg,
    .cart-btn .account-icon svg,
    .account-btn .cart-icon svg,
    .account-btn .account-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .mobile-toggle {
        padding: 0.5rem;
        margin-right: -0.5rem;
    }

    .category-sidebar {
        width: 85vw;
        max-width: 320px;
        left: -100%;
    }
}

body.menu-open {
    overflow: hidden;
}

.marquee-banner {
    background: linear-gradient(135deg, #14297b 0%, #0d1a4f 100%);
    overflow: hidden;
    position: relative;
    height: 2.25rem;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.marquee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: marqueeShine 6s ease-in-out infinite;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    padding: 0 0.625rem;
}

.marquee-item {
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01875rem;
    transition: all 0.3s;
}

.marquee-item:hover {
    color: #ff4248;
    text-shadow: 0 0 0.625rem rgba(255, 66, 72, 0.5);
}

.marquee-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.5rem;
    padding: 0 0.3125rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .marquee-banner {
        height: 2rem;
    }

    .marquee-item {
        font-size: 0.75rem;
        padding: 0 0.75rem;
    }

    .marquee-track {
        animation-duration: 20s;
    }
}

.order_details {
    display: none !important;
}

.archive-product-page {
    padding: 2.5rem 0 5rem;
    background: #f8f9fc;
    min-height: 80vh;
}

@media (max-width: 991px) {
    .archive-product-page {
        max-height: auto;
        padding: 1.25rem 0 3.75rem 0;
    }
}

.archive-product-page .archive-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5625rem;
    position: relative;
}

.archive-product-page .archive-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7.5rem;
    height: 0.1875rem;
    background: linear-gradient(90deg, #14297b, #ff4248);
    border-radius: 3px;
}

.archive-product-page .archive-header .archive-title {
    font-size: 2.625rem;
    font-weight: 800;
    background: linear-gradient(135deg, #14297b 0%, #091339 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 0.75rem;
}

@media (max-width: 768px) {
    .archive-product-page .archive-header .archive-title {
        font-size: 1.75rem;
    }
}

.archive-product-page .archive-header .archive-description {
    font-size: 0.9375rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.archive-product-page .archive-layout {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    gap: 1.875rem;
    align-items: start;
}

@media (max-width: 991px) {
    .archive-product-page .archive-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 991px) {
    .archive-product-page .product-filters-sidebar {
        position: relative;
    }
}

.archive-product-page .product-filters-sidebar .filters-sticky {
    position: sticky;
    top: 5.625rem;
}

@media (max-width: 991px) {
    .archive-product-page .product-filters-sidebar .filters-sticky {
        position: static;
    }
}

.archive-product-page .product-filters-sidebar .filters-toggle-mobile {
    display: none;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #14297b 0%, #0e1d58 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    box-shadow: 0 0.5rem 1.25rem rgba(20, 41, 123, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-product-page .product-filters-sidebar .filters-toggle-mobile svg {
    stroke: white;
    width: 1.25rem;
    height: 1.25rem;
}

.archive-product-page .product-filters-sidebar .filters-toggle-mobile:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 1.75rem rgba(20, 41, 123, 0.35);
}

@media (max-width: 991px) {
    .archive-product-page .product-filters-sidebar .filters-toggle-mobile {
        display: flex;
    }
}

.archive-product-page .product-filters-sidebar .filters-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(20, 41, 123, 0.08);
}

@media (max-width: 991px) {
    .archive-product-page .product-filters-sidebar .filters-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 20rem;
        height: 100vh;
        z-index: 10000;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border: none;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0.25rem 0 1.875rem rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .archive-product-page .product-filters-sidebar .filters-wrapper.active {
        left: 0;
    }
}

.archive-product-page .product-filters-sidebar .filters-header {
    padding: 1.5rem 1.5rem;
    background: linear-gradient(135deg, #14297b 0%, #0d1a4f 100%);
    position: relative;
}

.archive-product-page .product-filters-sidebar .filters-header .filters-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01875rem;
}

.archive-product-page .product-filters-sidebar .filters-header .filters-title svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: white;
    stroke-width: 2.5;
}

.archive-product-page .product-filters-sidebar .filters-header .filters-close-mobile {
    display: none;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(0.625rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.375rem;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    padding: 0;
}

.archive-product-page .product-filters-sidebar .filters-header .filters-close-mobile:hover {
    background: #ff4248;
    transform: rotate(90deg);
    border-color: #ff4248;
}

@media (max-width: 991px) {
    .archive-product-page .product-filters-sidebar .filters-header .filters-close-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.archive-product-page .product-filters-sidebar .filter-group {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.archive-product-page .product-filters-sidebar .filter-group:last-child {
    border-bottom: none;
}

.archive-product-page .product-filters-sidebar .filter-group .filter-group-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #14297b;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.archive-product-page .product-filters-sidebar .filter-group .filter-group-title svg {
    width: 1rem;
    height: 1rem;
    stroke: #14297b;
    stroke-width: 2.5;
}

.archive-product-page .product-filters-sidebar .filter-group .filter-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.archive-product-page .product-filters-sidebar .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.6875rem 0.75rem;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}

.archive-product-page .product-filters-sidebar .filter-checkbox:hover {
    background: rgba(20, 41, 123, 0.04);
    border-color: rgba(20, 41, 123, 0.1);
    transform: translateX(0.125rem);
}

.archive-product-page .product-filters-sidebar .filter-checkbox input[type="checkbox"] {
    display: none;
}

.archive-product-page .product-filters-sidebar .filter-checkbox .checkmark {
    width: 1.375rem;
    height: 1.375rem;
    border: 2.5px solid #d0d5dd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: white;
}

.archive-product-page .product-filters-sidebar .filter-checkbox .checkmark:after {
    content: "";
    position: absolute;
    left: 0.375rem;
    top: 0.125rem;
    width: 0.375rem;
    height: 0.6875rem;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.archive-product-page .product-filters-sidebar .filter-checkbox input[type="checkbox"]:checked+.checkmark {
    background: linear-gradient(135deg, #14297b 0%, #0e1d58 100%);
    border-color: #14297b;
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.25);
}

.archive-product-page .product-filters-sidebar .filter-checkbox input[type="checkbox"]:checked+.checkmark:after {
    transform: rotate(45deg) scale(1);
}

.archive-product-page .product-filters-sidebar .filter-checkbox .label-text {
    font-size: 0.875rem;
    color: #344054;
    font-weight: 500;
    user-select: none;
}

.archive-product-page .product-filters-sidebar .subcategories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.archive-product-page .product-filters-sidebar .subcategories-list li {
    margin: 0;
}

.archive-product-page .product-filters-sidebar .subcategories-list .subcategory-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.875rem;
    background: #f8f9fc;
    border-radius: 10px;
    text-decoration: none;
    color: #344054;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
}

.archive-product-page .product-filters-sidebar .subcategories-list .subcategory-link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.1875rem;
    height: 0;
    background: linear-gradient(180deg, #14297b, #ff4248);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-product-page .product-filters-sidebar .subcategories-list .subcategory-link:hover {
    background: white;
    border-color: rgba(20, 41, 123, 0.15);
    color: #14297b;
    transform: translateX(0.25rem);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}

.archive-product-page .product-filters-sidebar .subcategories-list .subcategory-link:hover:before {
    height: 1.5rem;
}

.archive-product-page .products-main-content .products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.5rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .archive-product-page .products-main-content .products-toolbar {
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.875rem;
        align-items: flex-start;
    }
}

.archive-product-page .products-main-content .products-toolbar .products-count {
    font-size: 0.9375rem;
    color: #475467;
    font-weight: 600;
}

.archive-product-page .products-main-content .products-toolbar .products-count strong {
    color: #14297b;
    font-size: 1.25rem;
    font-weight: 800;
}

.archive-product-page .products-main-content .products-toolbar .products-sorting {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

@media (max-width: 991px) {
    .archive-product-page .products-main-content .products-toolbar .products-sorting {
        width: 100%;
    }
}

.archive-product-page .products-main-content .products-toolbar .products-sorting label {
    font-size: 0.875rem;
    color: #667085;
    font-weight: 600;
}

.archive-product-page .products-main-content .products-toolbar .products-sorting select {
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    border: 2px solid #e4e7ec;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #344054;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23344054' d='M11.293 4.293L7 8.586 2.707 4.293A1 1 0 001.293 5.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E") no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.875rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.25s;
}

@media (max-width: 991px) {
    .archive-product-page .products-main-content .products-toolbar .products-sorting select {
        width: 100%;
    }
}

.archive-product-page .products-main-content .products-toolbar .products-sorting select:hover {
    border-color: #14297b;
}

.archive-product-page .products-main-content .products-toolbar .products-sorting select:focus {
    outline: none;
    border-color: #14297b;
    box-shadow: 0 0 0 0.25rem rgba(20, 41, 123, 0.1);
}

.archive-product-page .products-main-content .products-grid-archive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .archive-product-page .products-main-content .products-grid-archive {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .archive-product-page .products-main-content .products-grid-archive {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.archive-product-page .products-main-content .no-products-found {
    grid-column: -1;
    text-align: center;
    padding: 5rem 1.875rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.archive-product-page .products-main-content .no-products-found svg {
    stroke: #cbd5e1;
    margin-bottom: 1.25rem;
    opacity: 0.6;
}

.archive-product-page .products-main-content .no-products-found h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.625rem;
}

.archive-product-page .products-main-content .no-products-found p {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0 0 1.75rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.archive-product-page .products-main-content .no-products-found .btn-clear-filters {
    display: inline-block;
    padding: 0.8125rem 2rem;
    background: linear-gradient(135deg, #14297b 0%, #0e1d58 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 0.25rem 0.875rem rgba(20, 41, 123, 0.25);
}

.archive-product-page .products-main-content .no-products-found .btn-clear-filters:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.25rem rgba(20, 41, 123, 0.35);
}

.archive-product-page .products-main-content .products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    margin-top: 3.125rem;
}

.archive-product-page .products-main-content .products-pagination a,
.archive-product-page .products-main-content .products-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 2.625rem;
    padding: 0 0.75rem;
    background: white;
    border: 2px solid #e4e7ec;
    border-radius: 10px;
    text-decoration: none;
    color: #344054;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-product-page .products-main-content .products-pagination a svg,
.archive-product-page .products-main-content .products-pagination span svg {
    stroke: currentColor;
    width: 1.125rem;
    height: 1.125rem;
}

.archive-product-page .products-main-content .products-pagination a:hover,
.archive-product-page .products-main-content .products-pagination span:hover {
    background: #14297b;
    color: white;
    border-color: #14297b;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.25);
}

.archive-product-page .products-main-content .products-pagination a:hover svg,
.archive-product-page .products-main-content .products-pagination span:hover svg {
    stroke: white;
}

.archive-product-page .products-main-content .products-pagination a.current,
.archive-product-page .products-main-content .products-pagination span.current {
    background: linear-gradient(135deg, #14297b 0%, #0e1d58 100%);
    color: white;
    border-color: #14297b;
    box-shadow: 0 0.25rem 0.875rem rgba(20, 41, 123, 0.3);
}

.archive-product-page .products-main-content .products-pagination .dots {
    color: #94a3b8;
    padding: 0 0.25rem;
    border: none;
    background: transparent;
}

.archive-product-page .products-main-content .products-pagination .dots:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}

.filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(0.25rem);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .filters-overlay {
        display: block;
    }
}

.account-section {
    padding: 3.125rem 0 5rem;
    background: #f8fafc;
    min-height: calc(-100vh);
}

@media (max-width: 991px) {
    .account-section {
        padding: 0.75rem 0 2.5rem 0;
        min-height: auto;
    }
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .auth-container {
        padding: 1.25rem;
    }
}

.auth-tabs {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.875rem;
    background: #f1f5f9;
    padding: 0.3125rem;
    border-radius: 12px;
}

.auth-tabs .auth-tab {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.auth-tabs .auth-tab.active {
    background: #14297b;
    color: white;
}

.auth-form-wrapper {
    display: none;
}

.auth-form-wrapper.active {
    display: block;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: #14297b;
}

.auth-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5625rem;
    font-size: 0.875rem;
}

.auth-form .form-options .remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #64748b;
}

.auth-form .form-options .forgot-password {
    color: #14297b;
    text-decoration: none;
}

.auth-form .form-options .forgot-password:hover {
    text-decoration: underline;
}

.auth-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: #14297b;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-form .btn-submit:hover {
    background: #0e1d58;
    transform: translateY(-0.125rem);
}

.auth-form .terms-checkbox {
    margin-bottom: 1.5rem !important;
}

.auth-form .terms-checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
    user-select: none;
}

.auth-form .terms-checkbox .checkbox-label input[type="checkbox"] {
    display: none;
}

.auth-form .terms-checkbox .checkbox-label .checkmark {
    width: 1.375rem;
    height: 1.375rem;
    min-width: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 0.0625rem;
}

.auth-form .terms-checkbox .checkbox-label .checkmark:after {
    content: "";
    width: 0.375rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}

.auth-form .terms-checkbox .checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: #14297b;
    border-color: #14297b;
}

.auth-form .terms-checkbox .checkbox-label input[type="checkbox"]:checked+.checkmark:after {
    transform: rotate(45deg) scale(1);
}

.auth-form .terms-checkbox .checkbox-label input[type="checkbox"]:focus+.checkmark {
    box-shadow: 0 0 0 0.1875rem rgba(20, 41, 123, 0.15);
}

.auth-form .terms-checkbox .checkbox-label:hover .checkmark {
    border-color: #14297b;
}

.auth-form .terms-checkbox .checkbox-label .checkbox-text {
    flex: 1;
}

.auth-form .terms-checkbox .checkbox-label .checkbox-text a {
    color: #14297b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.auth-form .terms-checkbox .checkbox-label .checkbox-text a:hover {
    color: #ff4248;
    text-decoration: underline;
}

.auth-form .terms-text {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

.auth-form .terms-text a {
    color: #14297b;
}

.account-wrapper {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    gap: 1.875rem;
}

@media (max-width: 991px) {
    .account-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
}

.account-sidebar {
    background: white;
    border-radius: 16px;
    padding: 1.5625rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 6.25rem;
}

@media (max-width: 991px) {
    .account-sidebar {
        position: static;
        padding: 1.25rem;
    }
}

.account-sidebar .user-info {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 1.25rem;
}

.account-sidebar .user-info .user-avatar img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.account-sidebar .user-info .user-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.account-sidebar .user-info .user-details p {
    font-size: 0.8125rem;
    color: #64748b;
}

.account-sidebar .account-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 0.3125rem;
}

.account-sidebar .account-menu .menu-item svg {
    stroke: #64748b;
}

.account-sidebar .account-menu .menu-item:hover,
.account-sidebar .account-menu .menu-item.active {
    background: rgba(20, 41, 123, 0.08);
    color: #14297b;
}

.account-sidebar .account-menu .menu-item:hover svg,
.account-sidebar .account-menu .menu-item.active svg {
    stroke: #14297b;
}

.account-sidebar .account-menu .menu-item.logout {
    color: #dc2626;
    margin-top: 0.9375rem;
    border-top: 2px solid #f1f5f9;
    padding-top: 1.25rem;
}

.account-sidebar .account-menu .menu-item.logout svg {
    stroke: #dc2626;
}

.account-sidebar .account-menu .menu-item.logout:hover {
    background: rgba(220, 38, 38, 0.08);
}

.account-content {
    background: white;
    border-radius: 16px;
    padding: 2.1875rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .account-content {
        padding: 1.25rem;
    }
}

.account-content .content-header {
    margin-bottom: 1.875rem;
}

.account-content .content-header h1 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.account-content .content-header p {
    color: #64748b;
    font-size: 0.9375rem;
}

.account-content .order-detail .order-status-bar {
    padding: 0.9375rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 1.5625rem;
}

.account-content .order-detail .order-status-bar.status-completed {
    background: #dcfce7;
    color: #16a34a;
}

.account-content .order-detail .order-status-bar.status-processing {
    background: #dbeafe;
    color: #2563eb;
}

.account-content .order-detail .order-status-bar.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.account-content .order-detail .order-status-bar.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.account-content .order-detail .order-status-bar.status-on-hold {
    background: #f3e8ff;
    color: #9333ea;
}

.account-content .order-detail .order-items-list {
    margin-bottom: 1.875rem;
}

.account-content .order-detail .order-items-list h3 {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
}

.account-content .order-detail .order-items-list .order-table {
    width: 100%;
    border-collapse: collapse;
}

.account-content .order-detail .order-items-list .order-table th,
.account-content .order-detail .order-items-list .order-table td {
    padding: 0.9375rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.account-content .order-detail .order-items-list .order-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
}

.account-content .order-detail .order-items-list .order-table .product-cell {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.account-content .order-detail .order-items-list .order-table .product-cell .product-thumb {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 8px;
    overflow: hidden;
}

.account-content .order-detail .order-items-list .order-table .product-cell .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-content .order-detail .order-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .account-content .order-detail .order-summary-grid {
        grid-template-columns: 1fr;
    }
}

.account-content .order-detail .order-summary-grid .summary-box {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
}

.account-content .order-detail .order-summary-grid .summary-box h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.account-content .order-detail .order-summary-grid .summary-box address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
}

.account-content .order-detail .order-summary-grid .summary-box.totals .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
}

.account-content .order-detail .order-summary-grid .summary-box.totals .total-row.grand-total {
    border-top: 2px solid #e5e7eb;
    padding-top: 0.625rem;
    margin-top: 0.625rem;
    font-size: 1rem;
}

.account-content .order-detail .order-summary-grid .summary-box.totals .total-row.grand-total strong {
    color: #14297b;
}

.account-content .order-detail .order-actions {
    margin-top: 1.875rem;
    padding-top: 1.5625rem;
    border-top: 2px solid #e5e7eb;
}

.account-content .order-detail .order-actions .btn-cancel-order {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5625rem;
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .account-content .order-detail .order-actions .btn-cancel-order {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.account-content .order-detail .order-actions .btn-cancel-order svg {
    stroke: #dc2626;
}

.account-content .order-detail .order-actions .btn-cancel-order:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.account-content .order-detail .order-actions .btn-cancel-order:hover svg {
    stroke: white;
}

.account-content .back-link {
    display: inline-block;
    color: #14297b;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
}

.account-content .back-link:hover {
    text-decoration: underline;
}

.account-content .address-form {
    max-width: 700px;
}

.account-content .address-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 576px) {
    .account-content .address-form .form-row {
        grid-template-columns: 1fr;
    }
}

.account-content .address-form .form-group {
    margin-bottom: 1.25rem;
}

.account-content .address-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.account-content .address-form .form-group input,
.account-content .address-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.account-content .address-form .form-group input:focus,
.account-content .address-form .form-group select:focus {
    outline: none;
    border-color: #14297b;
}

.account-content .address-form .form-group select {
    background: white;
    cursor: pointer;
}

.account-content .address-form .btn-save {
    padding: 1rem 2.1875rem;
    background: #14297b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.625rem;
}

.account-content .address-form .btn-save:hover {
    background: #0e1d58;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

.dashboard-cards .dash-card {
    padding: 1.5625rem;
    background: #f8fafc;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dashboard-cards .dash-card:hover {
    border-color: #14297b;
    transform: translateY(-0.1875rem);
}

.dashboard-cards .dash-card .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9375rem;
}

.dashboard-cards .dash-card .card-icon.orders {
    background: rgba(59, 130, 246, 0.1);
}

.dashboard-cards .dash-card .card-icon.orders svg {
    stroke: #3b82f6;
}

.dashboard-cards .dash-card .card-icon.addresses {
    background: rgba(16, 185, 129, 0.1);
}

.dashboard-cards .dash-card .card-icon.addresses svg {
    stroke: #10b981;
}

.dashboard-cards .dash-card .card-icon.account {
    background: rgba(139, 92, 246, 0.1);
}

.dashboard-cards .dash-card .card-icon.account svg {
    stroke: #8b5cf6;
}

.dashboard-cards .dash-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.375rem;
}

.dashboard-cards .dash-card p {
    font-size: 0.875rem;
    color: #64748b;
}

.orders-list .order-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 0.9375rem;
}

@media (max-width: 991px) {
    .orders-list .order-item {
        padding: 0.75rem;
    }
}

.orders-list .order-item .order-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0.9375rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-header {
        flex-wrap: nowrap;
    }
}

.orders-list .order-item .order-header .order-id .label {
    font-size: 0.8125rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-header .order-id .label {
        font-size: 0.75rem;
    }
}

.orders-list .order-item .order-header .order-id strong {
    color: #14297b;
    font-size: 0.9375rem;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-header .order-id strong {
        font-size: 0.75rem;
    }
}

.orders-list .order-item .order-header .order-date {
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-header .order-date {
        font-size: 0.75rem;
    }
}

.orders-list .order-item .order-header .order-status {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-left: auto;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-header .order-status {
        font-size: 0.6875rem;
        border-radius: 6px;
    }
}

.orders-list .order-item .order-header .order-status.status-completed {
    background: #dcfce7;
    color: #16a34a;
}

.orders-list .order-item .order-header .order-status.status-processing {
    background: #dbeafe;
    color: #2563eb;
}

.orders-list .order-item .order-header .order-status.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.orders-list .order-item .order-header .order-status.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.orders-list .order-item .order-body {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-body {
        gap: 0;
        flex-wrap: wrap;
    }
}

.orders-list .order-item .order-body .order-items-preview {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-body .order-items-preview {
        width: 100%;
        margin-bottom: 1.25rem;
    }
}

.orders-list .order-item .order-body .order-items-preview .item-thumb {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.orders-list .order-item .order-body .order-items-preview .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orders-list .order-item .order-body .order-items-preview .more-items {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 8px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.orders-list .order-item .order-body .order-total {
    margin-left: auto;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-body .order-total {
        width: 50%;
    }
}

.orders-list .order-item .order-body .order-total .label {
    font-size: 0.8125rem;
    color: #64748b;
}

.orders-list .order-item .order-body .order-total strong {
    font-size: 1.0625rem;
    color: #1e293b;
}

.orders-list .order-item .order-body .btn-view-order {
    padding: 0.625rem 1.25rem;
    background: #14297b;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .orders-list .order-item .order-body .btn-view-order {
        width: 50%;
        text-align: center;
    }
}

.orders-list .order-item .order-body .btn-view-order:hover {
    background: #0e1d58;
}

.empty-state {
    text-align: center;
    padding: 3.125rem 1.25rem;
}

.empty-state svg {
    stroke: #cbd5e1;
    margin-bottom: 1.25rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.625rem;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 1.5625rem;
}

.empty-state .btn-shop {
    display: inline-block;
    padding: 0.875rem 1.875rem;
    background: #14297b;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.empty-state .btn-shop:hover {
    background: #0e1d58;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .addresses-grid {
        grid-template-columns: 1fr;
    }
}

.addresses-grid .address-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1.5625rem;
}

.addresses-grid .address-card h3 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.9375rem;
}

.addresses-grid .address-card h3 svg {
    stroke: #14297b;
}

.addresses-grid .address-card address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.25rem;
}

.addresses-grid .address-card .no-address {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.addresses-grid .address-card .btn-edit {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #14297b;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.addresses-grid .address-card .btn-edit:hover {
    background: #0e1d58;
}

.account-details-form {
    max-width: 600px;
}

.account-details-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 576px) {
    .account-details-form .form-row {
        grid-template-columns: 1fr;
    }
}

.account-details-form .form-group {
    margin-bottom: 1.25rem;
}

.account-details-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.account-details-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.account-details-form .form-group input:focus {
    outline: none;
    border-color: #14297b;
}

.account-details-form .section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1.875rem 0 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px solid #f1f5f9;
}

.account-details-form .btn-save {
    padding: 1rem 2.1875rem;
    background: #14297b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.625rem;
}

.account-details-form .btn-save:hover {
    background: #0e1d58;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.phone-input-wrapper .country-code {
    padding: 0.75rem 0.9375rem;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.phone-input-wrapper input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    padding: 0.75rem 0.9375rem;
}

.phone-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

.field-hint {
    display: block;
    margin-top: 0.3125rem;
    font-size: 0.75rem;
    color: #888;
}

.login-type-selector {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.5625rem;
}

.login-type-selector .login-type {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 0.9375rem;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.login-type-selector .login-type svg {
    opacity: 0.7;
}

.login-type-selector .login-type:hover {
    border-color: #14297b;
    color: #14297b;
}

.login-type-selector .login-type.active {
    background: #14297b;
    color: #fff;
    border-color: #14297b;
}

.login-type-selector .login-type.active svg {
    opacity: 1;
}

.login-fields {
    display: none;
}

.login-fields.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.phone-login-info {
    text-align: center;
    font-size: 0.8125rem;
    color: #888;
    margin-top: 0.9375rem;
}

.otp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.otp-modal.active {
    opacity: 1;
    visibility: visible;
}

.otp-modal.active .otp-modal-content {
    transform: translateY(0) scale(1);
}

.otp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(0.3125rem);
}

.otp-modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.25);
    transform: translateY(-1.25rem) scale(0.95);
    transition: all 0.3s ease;
}

.otp-modal-content .btn-submit {
    width: 100%;
    padding: 1rem 1.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #14297b;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(20, 41, 123, 0.4);
}

.otp-modal-content .btn-submit:hover {
    background: #0e1d58;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(20, 41, 123, 0.5);
}

.otp-modal-content .btn-submit:active {
    transform: translateY(0);
}

.otp-modal-content .btn-submit:disabled {
    background: #ccc;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

.otp-modal-close {
    position: absolute;
    top: 0.9375rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.otp-modal-close:hover {
    color: #333;
}

.otp-modal-header {
    margin-bottom: 1.875rem;
}

.otp-modal-header .otp-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.25rem;
    background: #14297b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-modal-header .otp-icon svg {
    stroke: #fff;
}

.otp-modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
    color: #333;
}

.otp-modal-header p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

.otp-modal-header p strong {
    color: #14297b;
}

.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.otp-input-group .otp-digit {
    width: 3.125rem;
    height: 3.75rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.2s ease;
}

.otp-input-group .otp-digit:focus {
    border-color: #14297b;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 0.1875rem rgba(20, 41, 123, 0.15);
}

.otp-input-group .otp-digit:not(:placeholder-shown) {
    border-color: #14297b;
    background: #fff;
}

.otp-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5625rem;
    font-size: 0.875rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
}

.otp-timer svg {
    opacity: 0.7;
}

.otp-timer span {
    font-weight: 700;
    color: #ff4248;
    font-size: 1rem;
}

.otp-resend {
    margin-top: 1.5625rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.otp-resend .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #14297b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.otp-resend .btn-link svg {
    transition: transform 0.3s ease;
}

.otp-resend .btn-link:disabled {
    color: #bbb;
    cursor: not-allowed;
}

.otp-resend .btn-link:disabled svg {
    opacity: 0.5;
}

.otp-resend .btn-link:not(:disabled):hover {
    background: rgba(20, 41, 123, 0.1);
    text-decoration: none;
}

.otp-resend .btn-link:not(:disabled):hover svg {
    transform: rotate(360deg);
}

.otp-message {
    display: none;
    margin-top: 1.25rem;
    padding: 0.875rem 1.125rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.otp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.otp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(0.625rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .otp-modal-content {
        padding: 1.875rem 1.25rem;
    }

    .otp-input-group {
        gap: 0.375rem;
    }

    .otp-input-group .otp-digit {
        width: 2.625rem;
        height: 3.125rem;
        font-size: 1.25rem;
    }

    .login-type-selector {
        flex-direction: column;
    }
}

@keyframes checkoutFadeIn {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkoutSlideIn {
    from {
        opacity: 0;
        transform: translateX(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes checkoutPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.custom-checkout-page {
    padding: 3.75rem 0 5rem;
    min-height: 80vh;
}

@media (max-width: 991px) {
    .custom-checkout-page {
        padding: 1.5625rem 0 2.5rem;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page {
        padding: 0.9375rem 0 1.875rem;
    }
}

.custom-checkout-page .checkout-header {
    text-align: center;
    margin-bottom: 3.125rem;
    animation: checkoutFadeIn 0.5s ease-out;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header {
        margin-bottom: 1.5625rem;
    }
}

.custom-checkout-page .checkout-header h1 {
    font-size: 2.25rem;
    color: #14297b;
    margin: 0 0 1.875rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header h1 {
        font-size: 1.625rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page .checkout-header h1 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
}

.custom-checkout-page .checkout-header .checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header .checkout-steps {
        max-width: 100%;
        padding: 0 0.625rem;
    }
}

.custom-checkout-page .checkout-header .checkout-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header .checkout-steps .step {
        gap: 0.3125rem;
    }
}

.custom-checkout-page .checkout-header .checkout-steps .step .step-number {
    width: 2.75rem;
    height: 2.75rem;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header .checkout-steps .step .step-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
}

.custom-checkout-page .checkout-header .checkout-steps .step .step-text {
    font-size: 0.8125rem;
    color: #999;
    font-weight: 600;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header .checkout-steps .step .step-text {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page .checkout-header .checkout-steps .step .step-text {
        font-size: 0.625rem;
    }
}

.custom-checkout-page .checkout-header .checkout-steps .step.completed .step-number {
    background: #14297b;
    color: white;
}

.custom-checkout-page .checkout-header .checkout-steps .step.completed .step-text {
    color: #14297b;
}

.custom-checkout-page .checkout-header .checkout-steps .step.active .step-number {
    background: #ff4248;
    color: white;
    box-shadow: 0 0.25rem 0.9375rem rgba(255, 66, 72, 0.3);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header .checkout-steps .step.active .step-number {
        transform: scale(1.05);
    }
}

.custom-checkout-page .checkout-header .checkout-steps .step.active .step-text {
    color: #ff4248;
    font-weight: 700;
}

.custom-checkout-page .checkout-header .checkout-steps .step-line {
    width: 5rem;
    height: 0.1875rem;
    background: #e0e0e0;
    margin: 0 0.625rem;
    margin-bottom: 1.75rem;
    transition: all 0.3s;
}

.custom-checkout-page .checkout-header .checkout-steps .step-line.completed {
    background: #14297b;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-header .checkout-steps .step-line {
        width: 3.125rem;
        margin: 0 0.375rem;
        margin-bottom: 1.375rem;
    }
}

@media (max-width: 576px) {
    .custom-checkout-page .checkout-header .checkout-steps .step-line {
        width: 1.875rem;
        margin: 0 0.25rem;
    }
}

.custom-checkout-page .checkout-content {
    display: grid;
    grid-template-columns: 1fr 26.25rem;
    gap: 1.875rem;
    align-items: start;
}

@media (max-width: 1200px) {
    .custom-checkout-page .checkout-content {
        grid-template-columns: 1fr 23.75rem;
    }
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page .checkout-content {
        gap: 0.9375rem;
    }
}

.custom-checkout-page .checkout-forms {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-forms {
        gap: 0.9375rem;
    }
}

.custom-checkout-page .checkout-summary {
    position: sticky;
    top: 5.625rem;
}

.custom-checkout-page .checkout-section {
    background: white;
    border-radius: 20px;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
    animation: checkoutFadeIn 0.5s ease-out;
    animation-fill-mode: backwards;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section {
        padding: 1.25rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page .checkout-section {
        padding: 0.9375rem;
        border-radius: 14px;
    }
}

.custom-checkout-page .checkout-section:nth-child(1) {
    animation-delay: 0.1s;
}

.custom-checkout-page .checkout-section:nth-child(2) {
    animation-delay: 0.15s;
}

.custom-checkout-page .checkout-section:nth-child(3) {
    animation-delay: 0.2s;
}

.custom-checkout-page .checkout-section:nth-child(4) {
    animation-delay: 0.25s;
}

.custom-checkout-page .checkout-section:nth-child(5) {
    animation-delay: 0.3s;
}

.custom-checkout-page .checkout-section .section-header {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 1.5625rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #e8ebf3;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section .section-header {
        gap: 0.75rem;
        margin-bottom: 1.125rem;
        padding-bottom: 0.9375rem;
    }
}

.custom-checkout-page .checkout-section .section-header .section-icon {
    width: 3rem;
    height: 3rem;
    background: #e8ebf3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section .section-header .section-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 10px;
    }

    .custom-checkout-page .checkout-section .section-header .section-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.custom-checkout-page .checkout-section .section-header .section-icon svg {
    stroke: #14297b;
    width: 1.875rem;
    height: 1.875rem;
}

.custom-checkout-page .checkout-section .section-header h2 {
    font-size: 1.25rem;
    color: #14297b;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section .section-header h2 {
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page .checkout-section .section-header h2 {
        font-size: 1rem;
    }
}

.custom-checkout-page .checkout-section h3 {
    display: none;
}

.custom-checkout-page .checkout-section .form-simple {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section .form-simple {
        gap: 0.875rem;
    }
}

.custom-checkout-page .checkout-section .form-row {
    display: block;
    width: 100%;
    margin: 0 0 0.9375rem !important;
    padding: 0;
}

.custom-checkout-page .checkout-section .form-row:after {
    content: "";
    display: table;
    clear: both;
}

.custom-checkout-page .checkout-section .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section .form-group label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
}

.custom-checkout-page .checkout-section .form-group input[type="text"],
.custom-checkout-page .checkout-section .form-group input[type="email"],
.custom-checkout-page .checkout-section .form-group input[type="tel"],
.custom-checkout-page .checkout-section .form-group textarea,
.custom-checkout-page .checkout-section .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e8ebf3;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
    background: white;
}

@media (max-width: 991px) {

    .custom-checkout-page .checkout-section .form-group input[type="text"],
    .custom-checkout-page .checkout-section .form-group input[type="email"],
    .custom-checkout-page .checkout-section .form-group input[type="tel"],
    .custom-checkout-page .checkout-section .form-group textarea,
    .custom-checkout-page .checkout-section .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
        border-radius: 10px;
    }
}

.custom-checkout-page .checkout-section .form-group input[type="text"]::placeholder,
.custom-checkout-page .checkout-section .form-group input[type="email"]::placeholder,
.custom-checkout-page .checkout-section .form-group input[type="tel"]::placeholder,
.custom-checkout-page .checkout-section .form-group textarea::placeholder,
.custom-checkout-page .checkout-section .form-group select::placeholder {
    color: #aaa;
}

.custom-checkout-page .checkout-section .form-group input[type="text"]:focus,
.custom-checkout-page .checkout-section .form-group input[type="email"]:focus,
.custom-checkout-page .checkout-section .form-group input[type="tel"]:focus,
.custom-checkout-page .checkout-section .form-group textarea:focus,
.custom-checkout-page .checkout-section .form-group select:focus {
    outline: none;
    border-color: #14297b;
    box-shadow: 0 0 0 0.25rem rgba(20, 41, 123, 0.1);
}

.custom-checkout-page .checkout-section .form-group textarea {
    resize: vertical;
    min-height: 70px;
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-section .form-group textarea {
        min-height: 60px;
    }
}

.custom-checkout-page .checkout-section .phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 2px solid #e8ebf3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.custom-checkout-page .checkout-section .phone-input-wrapper:focus-within {
    border-color: #14297b;
    box-shadow: 0 0 0 0.25rem rgba(20, 41, 123, 0.1);
}

.custom-checkout-page .checkout-section .phone-input-wrapper .country-code {
    background: #e8ebf3;
    padding: 0.875rem 0.875rem;
    font-weight: 700;
    color: #14297b;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-checkout-page .checkout-section .phone-input-wrapper input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 0.75rem !important;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row,
.custom-checkout-page .checkout-section .form-simple .form-row,
.custom-checkout-page .checkout-section .checkout-section .form-row {
    margin: 0 0 1.25rem !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row.form-row-first,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row.form-row-first,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row.form-row-first,
.custom-checkout-page .checkout-section .form-simple .form-row.form-row-first,
.custom-checkout-page .checkout-section .checkout-section .form-row.form-row-first {
    width: 48% !important;
    float: left !important;
    clear: left !important;
    margin-right: 4% !important;
}

@media (max-width: 768px) {

    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row.form-row-first,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row.form-row-first,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row.form-row-first,
    .custom-checkout-page .checkout-section .form-simple .form-row.form-row-first,
    .custom-checkout-page .checkout-section .checkout-section .form-row.form-row-first {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row.form-row-last,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row.form-row-last,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row.form-row-last,
.custom-checkout-page .checkout-section .form-simple .form-row.form-row-last,
.custom-checkout-page .checkout-section .checkout-section .form-row.form-row-last {
    width: 48% !important;
    float: right !important;
    clear: none !important;
}

@media (max-width: 768px) {

    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row.form-row-last,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row.form-row-last,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row.form-row-last,
    .custom-checkout-page .checkout-section .form-simple .form-row.form-row-last,
    .custom-checkout-page .checkout-section .checkout-section .form-row.form-row-last {
        width: 100% !important;
        float: none !important;
    }
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row.form-row-wide,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row.form-row-wide,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row.form-row-wide,
.custom-checkout-page .checkout-section .form-simple .form-row.form-row-wide,
.custom-checkout-page .checkout-section .checkout-section .form-row.form-row-wide {
    width: 100% !important;
    clear: both !important;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row label,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row label,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row label,
.custom-checkout-page .checkout-section .form-simple .form-row label,
.custom-checkout-page .checkout-section .checkout-section .form-row label {
    display: block !important;
    width: 100% !important;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #14297b;
    margin-bottom: 0.625rem;
    text-align: left !important;
    letter-spacing: -0.0125rem;
}

@media (max-width: 991px) {

    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row label,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row label,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row label,
    .custom-checkout-page .checkout-section .form-simple .form-row label,
    .custom-checkout-page .checkout-section .checkout-section .form-row label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row label .required,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row label .required,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row label .required,
.custom-checkout-page .checkout-section .form-simple .form-row label .required,
.custom-checkout-page .checkout-section .checkout-section .form-row label .required {
    color: #ff4248;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.1875rem;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row .woocommerce-input-wrapper,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row .woocommerce-input-wrapper,
.custom-checkout-page .checkout-section .form-simple .form-row .woocommerce-input-wrapper,
.custom-checkout-page .checkout-section .checkout-section .form-row .woocommerce-input-wrapper {
    display: block !important;
    width: 100% !important;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input.input-text,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="text"],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="email"],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="tel"],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input.input-text,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="text"],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="email"],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="tel"],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input.input-text,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="text"],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="email"],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="tel"],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select,
.custom-checkout-page .checkout-section .form-simple .form-row input.input-text,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="text"],
.custom-checkout-page .checkout-section .form-simple .form-row input[type="email"],
.custom-checkout-page .checkout-section .form-simple .form-row input[type="tel"],
.custom-checkout-page .checkout-section .form-simple .form-row textarea,
.custom-checkout-page .checkout-section .form-simple .form-row select,
.custom-checkout-page .checkout-section .checkout-section .form-row input.input-text,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="text"],
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="email"],
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="tel"],
.custom-checkout-page .checkout-section .checkout-section .form-row textarea,
.custom-checkout-page .checkout-section .checkout-section .form-row select {
    width: 100% !important;
    display: block !important;
    padding: 1.125rem 1.375rem !important;
    border: 2px solid #f1f5f9 !important;
    border-radius: 16px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #f8fafc !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 0.125rem 0.25rem rgba(0, 0, 0, 0.01) !important;
}

@media (max-width: 991px) {

    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input.input-text,
    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="text"],
    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="email"],
    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="tel"],
    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea,
    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input.input-text,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="text"],
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="email"],
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="tel"],
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input.input-text,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="text"],
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="email"],
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="tel"],
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select,
    .custom-checkout-page .checkout-section .form-simple .form-row input.input-text,
    .custom-checkout-page .checkout-section .form-simple .form-row input[type="text"],
    .custom-checkout-page .checkout-section .form-simple .form-row input[type="email"],
    .custom-checkout-page .checkout-section .form-simple .form-row input[type="tel"],
    .custom-checkout-page .checkout-section .form-simple .form-row textarea,
    .custom-checkout-page .checkout-section .form-simple .form-row select,
    .custom-checkout-page .checkout-section .checkout-section .form-row input.input-text,
    .custom-checkout-page .checkout-section .checkout-section .form-row input[type="text"],
    .custom-checkout-page .checkout-section .checkout-section .form-row input[type="email"],
    .custom-checkout-page .checkout-section .checkout-section .form-row input[type="tel"],
    .custom-checkout-page .checkout-section .checkout-section .form-row textarea,
    .custom-checkout-page .checkout-section .checkout-section .form-row select {
        padding: 0.9375rem 1.125rem !important;
        font-size: 0.9375rem !important;
        border-radius: 14px !important;
    }
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input.input-text::placeholder,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="text"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="email"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="tel"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea::placeholder,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select::placeholder,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input.input-text::placeholder,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="text"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="email"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="tel"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea::placeholder,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select::placeholder,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input.input-text::placeholder,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="text"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="email"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="tel"]::placeholder,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea::placeholder,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select::placeholder,
.custom-checkout-page .checkout-section .form-simple .form-row input.input-text::placeholder,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="text"]::placeholder,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="email"]::placeholder,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="tel"]::placeholder,
.custom-checkout-page .checkout-section .form-simple .form-row textarea::placeholder,
.custom-checkout-page .checkout-section .form-simple .form-row select::placeholder,
.custom-checkout-page .checkout-section .checkout-section .form-row input.input-text::placeholder,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="text"]::placeholder,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="email"]::placeholder,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="tel"]::placeholder,
.custom-checkout-page .checkout-section .checkout-section .form-row textarea::placeholder,
.custom-checkout-page .checkout-section .checkout-section .form-row select::placeholder {
    color: #94a3b8 !important;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input.input-text:focus,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="text"]:focus,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="email"]:focus,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="tel"]:focus,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea:focus,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input.input-text:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="text"]:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="email"]:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="tel"]:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input.input-text:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="text"]:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="email"]:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="tel"]:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select:focus,
.custom-checkout-page .checkout-section .form-simple .form-row input.input-text:focus,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="text"]:focus,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="email"]:focus,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="tel"]:focus,
.custom-checkout-page .checkout-section .form-simple .form-row textarea:focus,
.custom-checkout-page .checkout-section .form-simple .form-row select:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row input.input-text:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="text"]:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="email"]:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="tel"]:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row textarea:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row select:focus {
    outline: none !important;
    border-color: #14297b !important;
    background: #fff !important;
    box-shadow: 0 0.625rem 1.5625rem rgba(20, 41, 123, 0.1), 0 0 0 0.25rem rgba(20, 41, 123, 0.05) !important;
    transform: translateY(-0.125rem);
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input.input-text[readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input.input-text.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="text"][readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="text"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="email"][readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="email"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="tel"][readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row input[type="tel"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea[readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select[readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input.input-text[readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input.input-text.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="text"][readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="text"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="email"][readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="email"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="tel"][readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row input[type="tel"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea[readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select[readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input.input-text[readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input.input-text.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="text"][readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="text"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="email"][readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="email"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="tel"][readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row input[type="tel"].readonly-field,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea[readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea.readonly-field,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select[readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select.readonly-field,
.custom-checkout-page .checkout-section .form-simple .form-row input.input-text[readonly],
.custom-checkout-page .checkout-section .form-simple .form-row input.input-text.readonly-field,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="text"][readonly],
.custom-checkout-page .checkout-section .form-simple .form-row input[type="text"].readonly-field,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="email"][readonly],
.custom-checkout-page .checkout-section .form-simple .form-row input[type="email"].readonly-field,
.custom-checkout-page .checkout-section .form-simple .form-row input[type="tel"][readonly],
.custom-checkout-page .checkout-section .form-simple .form-row input[type="tel"].readonly-field,
.custom-checkout-page .checkout-section .form-simple .form-row textarea[readonly],
.custom-checkout-page .checkout-section .form-simple .form-row textarea.readonly-field,
.custom-checkout-page .checkout-section .form-simple .form-row select[readonly],
.custom-checkout-page .checkout-section .form-simple .form-row select.readonly-field,
.custom-checkout-page .checkout-section .checkout-section .form-row input.input-text[readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row input.input-text.readonly-field,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="text"][readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="text"].readonly-field,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="email"][readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="email"].readonly-field,
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="tel"][readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row input[type="tel"].readonly-field,
.custom-checkout-page .checkout-section .checkout-section .form-row textarea[readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row textarea.readonly-field,
.custom-checkout-page .checkout-section .checkout-section .form-row select[readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row select.readonly-field {
    background: #f1f5f9 !important;
    color: #64748b !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea,
.custom-checkout-page .checkout-section .form-simple .form-row textarea,
.custom-checkout-page .checkout-section .checkout-section .form-row textarea {
    resize: vertical !important;
    min-height: 180px !important;
    line-height: 1.7 !important;
}

@media (max-width: 991px) {

    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row textarea,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row textarea,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row textarea,
    .custom-checkout-page .checkout-section .form-simple .form-row textarea,
    .custom-checkout-page .checkout-section .checkout-section .form-row textarea {
        min-height: 140px !important;
    }
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select,
.custom-checkout-page .checkout-section .form-simple .form-row select,
.custom-checkout-page .checkout-section .checkout-section .form-row select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e8ebf3;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
    background: white;
}

@media (max-width: 991px) {

    .custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select,
    .custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select,
    .custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select,
    .custom-checkout-page .checkout-section .form-simple .form-row select,
    .custom-checkout-page .checkout-section .checkout-section .form-row select {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
        border-radius: 10px;
    }
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select:focus,
.custom-checkout-page .checkout-section .form-simple .form-row select:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row select:focus {
    outline: none;
    border-color: #14297b;
    box-shadow: 0 0 0 0.25rem rgba(20, 41, 123, 0.1);
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select[readonly],
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select[disabled],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select[readonly],
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select[disabled],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select[readonly],
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select[disabled],
.custom-checkout-page .checkout-section .form-simple .form-row select[readonly],
.custom-checkout-page .checkout-section .form-simple .form-row select[disabled],
.custom-checkout-page .checkout-section .checkout-section .form-row select[readonly],
.custom-checkout-page .checkout-section .checkout-section .form-row select[disabled] {
    background: #f5f5f5;
    color: #666;
    cursor: not-allowed;
    border-color: #e0e0e0;
    pointer-events: none;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select[readonly]:focus,
.custom-checkout-page .checkout-section .woocommerce-billing-fields .form-row select[disabled]:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select[readonly]:focus,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields .form-row select[disabled]:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select[readonly]:focus,
.custom-checkout-page .checkout-section .woocommerce-additional-fields .form-row select[disabled]:focus,
.custom-checkout-page .checkout-section .form-simple .form-row select[readonly]:focus,
.custom-checkout-page .checkout-section .form-simple .form-row select[disabled]:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row select[readonly]:focus,
.custom-checkout-page .checkout-section .checkout-section .form-row select[disabled]:focus {
    border-color: #e0e0e0;
    box-shadow: none;
}

.custom-checkout-page .checkout-section .woocommerce-billing-fields:after,
.custom-checkout-page .checkout-section .woocommerce-shipping-fields:after,
.custom-checkout-page .checkout-section .woocommerce-additional-fields:after,
.custom-checkout-page .checkout-section .form-simple:after,
.custom-checkout-page .checkout-section .checkout-section:after {
    content: "";
    display: table;
    clear: both;
}

.custom-checkout-page .shipping-toggle-section {
    padding: 1.25rem 1.875rem;
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    cursor: pointer;
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox .toggle-slider {
    width: 3.25rem;
    height: 1.75rem;
    background: #e0e0e0;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox .toggle-slider:after {
    content: "";
    position: absolute;
    width: 1.375rem;
    height: 1.375rem;
    background: white;
    border-radius: 50%;
    top: 0.1875rem;
    left: 0.1875rem;
    transition: all 0.3s;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox input:checked+.toggle-slider {
    background: #14297b;
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox input:checked+.toggle-slider:after {
    left: 1.6875rem;
}

.custom-checkout-page .shipping-toggle-section .toggle-checkbox .toggle-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #555;
}

@media (max-width: 991px) {
    .custom-checkout-page .shipping-toggle-section .toggle-checkbox .toggle-label {
        font-size: 0.875rem;
    }
}

.custom-checkout-page .payment-section .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-methods {
        gap: 0.625rem;
    }
}

.custom-checkout-page .payment-section .payment-method {
    border: 2px solid #e8ebf3;
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    transition: all 0.3s;
    cursor: pointer;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method {
        padding: 0.875rem 1rem;
        border-radius: 12px;
    }
}

.custom-checkout-page .payment-section .payment-method:hover {
    border-color: #14297b;
    background: rgba(20, 41, 123, 0.02);
}

.custom-checkout-page .payment-section .payment-method.selected {
    border-color: #14297b;
    background: #e8ebf3;
}

.custom-checkout-page .payment-section .payment-method.selected .payment-radio:after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-checkout-page .payment-section .payment-method label {
    display: flex;
    align-items: flex-start;
    gap: 0.9375rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method label {
        gap: 0.75rem;
    }
}

.custom-checkout-page .payment-section .payment-method label input[type="radio"] {
    display: none;
}

.custom-checkout-page .payment-section .payment-method label .payment-radio {
    width: 1.375rem;
    height: 1.375rem;
    border: 2px solid #14297b;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method label .payment-radio {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.custom-checkout-page .payment-section .payment-method label .payment-radio:after {
    content: "";
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background: #14297b;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.2s;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method label .payment-radio:after {
        width: 0.625rem;
        height: 0.625rem;
    }
}

.custom-checkout-page .payment-section .payment-method label .payment-info {
    flex: 1;
}

.custom-checkout-page .payment-section .payment-method label .payment-info .payment-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #14297b;
    margin-bottom: 0.25rem;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method label .payment-info .payment-title {
        font-size: 0.9375rem;
    }
}

.custom-checkout-page .payment-section .payment-method label .payment-info .payment-desc {
    display: block;
    font-size: 0.8125rem;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method label .payment-info .payment-desc {
        font-size: 0.75rem;
    }
}

.custom-checkout-page .payment-section .payment-method .payment-fields {
    margin-top: 0.9375rem;
    padding-top: 0.9375rem;
    border-top: 1px solid rgba(20, 41, 123, 0.1);
}

@media (max-width: 991px) {
    .custom-checkout-page .payment-section .payment-method .payment-fields {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
}

@media (max-width: 991px) {
    .custom-checkout-page .checkout-summary {
        order: -1;
        width: 100%;
    }
}

.custom-checkout-page .summary-card {
    background: white;
    border-radius: 20px;
    padding: 1.875rem;
    position: sticky;
    top: 6.25rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .custom-checkout-page .summary-card {
        position: static;
        padding: 1.5rem;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .custom-checkout-page .summary-card {
        padding: 1.125rem;
    }
}

.custom-checkout-page .summary-card h3 {
    font-size: 1.375rem;
    color: #14297b;
    margin: 0 0 1.5625rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #e8ebf3;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-checkout-page .summary-card h3 svg {
    stroke: #ff4248;
}

.custom-checkout-page .summary-card .summary-items {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 1.5625rem;
    padding-right: 0.5rem;
}

.custom-checkout-page .summary-card .summary-items::-webkit-scrollbar {
    width: 0.25rem;
}

.custom-checkout-page .summary-card .summary-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.custom-checkout-page .summary-card .summary-items::-webkit-scrollbar-thumb {
    background: #14297b;
    border-radius: 10px;
}

.custom-checkout-page .summary-card .summary-item {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 0.9375rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-checkout-page .summary-card .summary-item:last-child {
    border-bottom: none;
}

.custom-checkout-page .summary-card .summary-item .item-image {
    width: 4.375rem;
    height: 4.375rem;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 0.375rem;
    position: relative;
    flex-shrink: 0;
}

.custom-checkout-page .summary-card .summary-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-checkout-page .summary-card .summary-item .item-image .item-qty {
    position: absolute;
    top: -0.625rem;
    right: -0.625rem;
    min-width: 24px;
    height: 1.5rem;
    background: #ff4248;
    color: white;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.375rem;
    box-shadow: 0 0.125rem 0.5rem rgba(255, 66, 72, 0.4);
}

.custom-checkout-page .summary-card .summary-item .item-details {
    flex: 1;
}

.custom-checkout-page .summary-card .summary-item .item-details .item-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #14297b;
    margin-bottom: 0.25rem;
}

.custom-checkout-page .summary-card .summary-item .item-details .wc-item-meta {
    display: none !important;
    font-size: 0.75rem;
    color: #888;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-checkout-page .summary-card .summary-item .item-details .wc-item-meta li {
    display: flex;
    gap: 0.3125rem;
    margin-bottom: 0.125rem;
}

.custom-checkout-page .summary-card .summary-item .item-details .variation {
    display: none !important;
}

.custom-checkout-page .summary-card .summary-item .item-price {
    font-size: 1rem;
    font-weight: 800;
    color: #14297b;
}

.custom-checkout-page .summary-card .coupon-section {
    margin-bottom: 1.5625rem;
    background: #f9faff;
    border: 1px solid #e8ebf3;
    border-radius: 14px;
    padding: 0.9375rem;
}

.custom-checkout-page .summary-card .coupon-section .coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #14297b;
    cursor: pointer;
}

.custom-checkout-page .summary-card .coupon-section .coupon-toggle svg {
    stroke: #ff4248;
}

.custom-checkout-page .summary-card .coupon-section .coupon-toggle .toggle-arrow {
    margin-left: auto;
    transition: 0.3s;
    font-size: 0.75rem;
}

.custom-checkout-page .summary-card .coupon-section .coupon-toggle:hover {
    color: #ff4248;
}

.custom-checkout-page .summary-card .coupon-section .coupon-form {
    margin-top: 0.9375rem;
    display: flex;
    gap: 0.625rem;
}

.custom-checkout-page .summary-card .coupon-section .coupon-form input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 2px solid #e8ebf3;
    border-radius: 10px;
    font-size: 0.875rem;
}

.custom-checkout-page .summary-card .coupon-section .coupon-form input:focus {
    border-color: #14297b;
    outline: none;
}

.custom-checkout-page .summary-card .coupon-section .coupon-form .btn-apply-coupon {
    background: #14297b;
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.custom-checkout-page .summary-card .coupon-section .coupon-form .btn-apply-coupon:hover {
    background: #ff4248;
}

.custom-checkout-page .summary-card .summary-totals {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.02);
}

.custom-checkout-page .summary-card .summary-totals .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    border-bottom: 1px solid #f8fafc;
}

.custom-checkout-page .summary-card .summary-totals .total-row:last-child {
    border-bottom: none;
}

.custom-checkout-page .summary-card .summary-totals .total-row strong {
    color: #14297b;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.0125rem;
}

.custom-checkout-page .summary-card .summary-totals .total-row.discount {
    color: #16a34a;
}

.custom-checkout-page .summary-card .summary-totals .total-row.discount strong {
    color: #16a34a;
}

.custom-checkout-page .summary-card .summary-totals .total-row.shipping-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.625rem 0;
}

.custom-checkout-page .summary-card .summary-totals .total-row.shipping-row span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #14297b;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.custom-checkout-page .summary-card .summary-totals .total-row.shipping-row span:before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2314297b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.8;
}

.custom-checkout-page .summary-card .summary-totals .total-row #shipping_method {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.custom-checkout-page .summary-card .summary-totals .total-row #shipping_method li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
    background: #f8fafc;
    padding: 0.625rem 0.875rem;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    margin-bottom: 0.375rem;
    transition: all 0.3s;
    cursor: pointer;
}

.custom-checkout-page .summary-card .summary-totals .total-row #shipping_method li:last-child {
    margin-bottom: 0;
}

.custom-checkout-page .summary-card .summary-totals .total-row #shipping_method li:hover {
    background: #fff;
    border-color: #14297b;
    box-shadow: 0 0.25rem 0.5rem rgba(20, 41, 123, 0.04);
}

.custom-checkout-page .summary-card .summary-totals .total-row #shipping_method li input {
    margin: 0;
    cursor: pointer;
    accent-color: #14297b;
    width: 1rem;
    height: 1rem;
}

.custom-checkout-page .summary-card .summary-totals .total-row #shipping_method li label {
    margin: 0;
    font-weight: 600;
    color: #14297b;
    cursor: pointer;
    font-size: 0.84375rem;
    flex: 1;
    text-align: right;
}

.custom-checkout-page .summary-card .summary-totals .total-row.grand-total {
    margin-top: 0.9375rem;
    padding: 0.9375rem;
    background: rgba(255, 66, 72, 0.04);
    border: 1px dashed rgba(255, 66, 72, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: #14297b;
    font-weight: 800;
}

.custom-checkout-page .summary-card .summary-totals .total-row.grand-total strong {
    color: #ff4248;
    font-size: 1.5rem;
    letter-spacing: -0.03125rem;
    line-height: 1;
}

@media (max-width: 480px) {
    .custom-checkout-page .summary-card .summary-totals .total-row.grand-total {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .custom-checkout-page .summary-card .summary-totals .total-row.grand-total strong {
        font-size: 1.375rem;
    }
}

.custom-checkout-page .payment-section .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5625rem;
}

.custom-checkout-page .payment-section .payment-method {
    border: 2px solid #e8ebf3;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
}

.custom-checkout-page .payment-section .payment-method:hover {
    border-color: #14297b;
}

.custom-checkout-page .payment-section .payment-method.selected {
    border-color: #14297b;
    background: rgba(20, 41, 123, 0.02);
    box-shadow: 0 0.25rem 0.9375rem rgba(20, 41, 123, 0.05);
}

.custom-checkout-page .payment-section .payment-method.selected .payment-radio:after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-checkout-page .payment-section .payment-method.selected .payment-title {
    color: #14297b;
}

.custom-checkout-page .payment-section .payment-method.selected .payment-desc {
    display: block !important;
}

.custom-checkout-page .payment-section .payment-method label {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    cursor: pointer;
    margin: 0;
}

.custom-checkout-page .payment-section .payment-method label input[type="radio"] {
    display: none;
}

.custom-checkout-page .payment-section .payment-method label .payment-radio {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #14297b;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.custom-checkout-page .payment-section .payment-method label .payment-radio:after {
    content: "";
    position: absolute;
    width: 0.875rem;
    height: 0.875rem;
    background: #14297b;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-checkout-page .payment-section .payment-method label .payment-info {
    flex: 1;
}

.custom-checkout-page .payment-section .payment-method label .payment-info .payment-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #333;
}

.custom-checkout-page .payment-section .payment-method label .payment-info .payment-title img {
    max-height: 24px;
}

.custom-checkout-page .payment-section .payment-method .payment-desc {
    margin-top: 0.9375rem;
    padding: 0.9375rem 1.25rem;
    background: #f8faff;
    border-radius: 12px;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    border: 1px solid rgba(20, 41, 123, 0.05);
    display: none;
}

.custom-checkout-page .payment-section .payment-method .payment-desc p {
    margin: 0;
}

.custom-checkout-page .payment-section .place-order .terms-section {
    margin-bottom: 1.5625rem;
    padding: 0 0.3125rem;
}

.custom-checkout-page .payment-section .place-order .terms-section .woocommerce-form__label-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
}

.custom-checkout-page .payment-section .place-order .terms-section .woocommerce-form__label-checkbox input {
    margin-top: 0.25rem;
}

.custom-checkout-page .payment-section .place-order .terms-section .woocommerce-form__label-checkbox a {
    color: #14297b;
    font-weight: 700;
    text-decoration: none;
}

.custom-checkout-page .payment-section .place-order .terms-section .woocommerce-form__label-checkbox a:hover {
    text-decoration: underline;
}

.custom-checkout-page .payment-section .place-order .btn-place-order {
    width: 100%;
    background: linear-gradient(135deg, #ff4248, #ff292f);
    color: white;
    border: none;
    padding: 1.375rem 1.875rem;
    border-radius: 18px;
    font-size: 1.375rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 0.625rem 1.875rem rgba(255, 66, 72, 0.3);
}

.custom-checkout-page .payment-section .place-order .btn-place-order svg {
    stroke: white;
    width: 1.625rem;
    height: 1.625rem;
}

.custom-checkout-page .payment-section .place-order .btn-place-order:hover {
    background: linear-gradient(135deg, #ff3339, #ff1920);
    transform: translateY(-0.25rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(255, 66, 72, 0.45);
}

.custom-checkout-page .payment-section .place-order .btn-place-order:active {
    transform: translateY(-0.0625rem);
}

.custom-checkout-page .payment-section .security-badge {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.875rem;
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 700;
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.custom-checkout-page .payment-section .security-badge:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    background: #16a34a;
}

.custom-checkout-page .payment-section .security-badge svg {
    stroke: #16a34a !important;
    width: 1.375rem !important;
    height: 1.375rem !important;
    filter: drop-shadow(0 0.125rem 0.25rem rgba(22, 163, 74, 0.2));
}

.custom-checkout-page .payment-section .back-to-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.5625rem;
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px transparent solid;
}

.custom-checkout-page .payment-section .back-to-cart span.arrow {
    transition: transform 0.3s;
    font-size: 1.25rem;
}

.custom-checkout-page .payment-section .back-to-cart:hover {
    color: #14297b;
    background: rgba(20, 41, 123, 0.03);
    border: 1px solid rgba(20, 41, 123, 0.1);
}

.custom-checkout-page .payment-section .back-to-cart:hover span.arrow {
    transform: translateX(-0.3125rem);
}

.custom-thankyou-page {
    padding: 3.75rem 0 6.25rem;
    background: radial-gradient(circle at top right, rgba(20, 41, 123, 0.05), transparent), radial-gradient(circle at bottom left, rgba(255, 66, 72, 0.03), transparent), #f8f9fc;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.custom-thankyou-page:before {
    content: "";
    position: absolute;
    top: -6.25rem;
    right: -6.25rem;
    width: 18.75rem;
    height: 18.75rem;
    background: #14297b;
    filter: blur(9.375rem);
    opacity: 0.05;
    z-index: 0;
}

.custom-thankyou-page .container {
    position: relative;
    z-index: 1;
}

.custom-thankyou-page .thankyou-header {
    text-align: center;
    margin-bottom: 3.125rem;
    animation: fadeInDown 0.8s ease-out;
}

.custom-thankyou-page .thankyou-header .success-icon {
    width: 6.25rem;
    height: 6.25rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5625rem;
    box-shadow: 0 0.9375rem 2.1875rem rgba(20, 41, 123, 0.1);
    color: #16a34a;
    position: relative;
}

.custom-thankyou-page .thankyou-header .success-icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #16a34a;
    animation: pulseIcon 2s infinite;
}

.custom-thankyou-page .thankyou-header .success-icon svg {
    width: 3.125rem;
    height: 3.125rem;
}

.custom-thankyou-page .thankyou-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #14297b;
    margin-bottom: 0.9375rem;
    letter-spacing: -0.0625rem;
}

@media (max-width: 768px) {
    .custom-thankyou-page .thankyou-header h1 {
        font-size: 2rem;
    }
}

.custom-thankyou-page .thankyou-header .success-message {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.1875rem;
    font-weight: 500;
}

.custom-thankyou-page .thankyou-header .checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
    max-width: 500px;
    margin: 0 auto;
}

.custom-thankyou-page .thankyou-header .checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.875rem;
}

.custom-thankyou-page .thankyou-header .checkout-steps .step .step-number {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.custom-thankyou-page .thankyou-header .checkout-steps .step.completed {
    color: #14297b;
}

.custom-thankyou-page .thankyou-header .checkout-steps .step.completed .step-number {
    background: #14297b;
    color: white;
    box-shadow: 0 0.25rem 0.625rem rgba(20, 41, 123, 0.2);
}

.custom-thankyou-page .thankyou-header .checkout-steps .step-line {
    flex: 1;
    height: 0.1875rem;
    background: #e2e8f0;
    border-radius: 2px;
    max-width: 60px;
}

.custom-thankyou-page .thankyou-header .checkout-steps .step-line.completed {
    background: linear-gradient(90deg, #14297b, #ff4248);
}

.custom-thankyou-page .thankyou-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.custom-thankyou-page .order-details-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(1.25rem);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
}

.custom-thankyou-page .order-details-card h2,
.custom-thankyou-page .order-details-card h3,
.custom-thankyou-page .order-details-card h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #14297b;
    font-weight: 800;
}

.custom-thankyou-page .order-details-card h2 svg,
.custom-thankyou-page .order-details-card h3 svg,
.custom-thankyou-page .order-details-card h4 svg {
    stroke-width: 2.5px;
    opacity: 0.8;
}

.custom-thankyou-page .order-details-card .order-info-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(20, 41, 123, 0.02) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-thankyou-page .order-details-card .order-info-section h2 {
    font-size: 1.375rem;
    margin-bottom: 1.875rem;
}

.custom-thankyou-page .order-details-card .order-info-section .order-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}

@media (max-width: 768px) {
    .custom-thankyou-page .order-details-card .order-info-section .order-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.custom-thankyou-page .order-details-card .order-info-section .order-info-grid .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.custom-thankyou-page .order-details-card .order-info-section .order-info-grid .info-item .info-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #94a3b8;
    font-weight: 700;
}

.custom-thankyou-page .order-details-card .order-info-section .order-info-grid .info-item .info-value {
    font-size: 1.125rem;
    color: #14297b;
    font-weight: 800;
}

.custom-thankyou-page .order-details-card .order-items-section {
    padding: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-thankyou-page .order-details-card .order-items-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9375rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item:hover {
    transform: translateX(0.5rem);
    background: #fff;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.04);
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item .item-image {
    width: 4.375rem;
    height: 4.375rem;
    flex-shrink: 0;
    background: white;
    padding: 0.3125rem;
    border-radius: 12px;
    border: 1px solid #edf2f7;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item .item-details {
    flex: 1;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item .item-details .item-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #14297b;
    margin-bottom: 0.25rem;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item .item-details .item-meta {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.custom-thankyou-page .order-details-card .order-items-section .order-items .order-item .item-price {
    font-size: 1rem;
    font-weight: 800;
    color: #ff4248;
}

.custom-thankyou-page .order-details-card .order-totals-section {
    padding: 2.5rem;
    background: #fafbfc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-thankyou-page .order-details-card .order-totals-section .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 600;
}

.custom-thankyou-page .order-details-card .order-totals-section .total-row strong {
    color: #14297b;
}

.custom-thankyou-page .order-details-card .order-totals-section .total-row.discount {
    color: #16a34a;
}

.custom-thankyou-page .order-details-card .order-totals-section .total-row.discount strong {
    color: #16a34a;
}

.custom-thankyou-page .order-details-card .order-totals-section .total-row.grand-total {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px dashed #e2e8f0;
    font-size: 1.375rem;
    color: #14297b;
    font-weight: 900;
}

.custom-thankyou-page .order-details-card .order-totals-section .total-row.grand-total strong {
    font-size: 1.75rem;
    color: #ff4248;
}

.custom-thankyou-page .order-details-card .addresses-section {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .custom-thankyou-page .order-details-card .addresses-section {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }
}

.custom-thankyou-page .order-details-card .addresses-section .address-block h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.custom-thankyou-page .order-details-card .addresses-section .address-block address {
    font-style: normal;
    line-height: 1.8;
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #edf2f7;
}

.custom-thankyou-page .thankyou-actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .custom-thankyou-page .thankyou-actions {
        flex-direction: column;
    }
}

.custom-thankyou-page .thankyou-actions .btn-continue-shopping,
.custom-thankyou-page .thankyou-actions .btn-view-orders {
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 250px;
}

.custom-thankyou-page .thankyou-actions .btn-continue-shopping {
    background: #14297b;
    color: white;
    box-shadow: 0 0.625rem 1.5625rem rgba(20, 41, 123, 0.2);
}

.custom-thankyou-page .thankyou-actions .btn-continue-shopping:hover {
    background: #ff4248;
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(255, 66, 72, 0.3);
}

.custom-thankyou-page .thankyou-actions .btn-view-orders {
    background: white;
    color: #14297b;
    border: 2px solid #14297b;
}

.custom-thankyou-page .thankyou-actions .btn-view-orders:hover {
    background: #f8faff;
    transform: translateY(-0.3125rem);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.site-footer {
    background: white;
    color: #666;
    margin-top: auto;
    border-top: 1px solid #e8e8e8;
}

.site-footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #14297b;
}

.site-footer .footer-main {
    padding: 3.125rem 0 2.1875rem;
}

@media (max-width: 768px) {
    .site-footer .footer-main {
        padding: 2.1875rem 0 1.5625rem;
    }
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.5fr;
    gap: 3.125rem;
}

@media (max-width: 992px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }
}

.site-footer .footer-column .footer-title {
    color: #14297b;
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 1.125rem;
    position: relative;
    padding-bottom: 0.625rem;
}

.site-footer .footer-column .footer-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.1875rem;
    height: 0.1875rem;
    background: #ff4248;
    border-radius: 2px;
}

.site-footer .footer-about .footer-logo {
    margin-bottom: 1.125rem;
}

.site-footer .footer-about .footer-logo img {
    max-width: 160px;
    height: auto;
}

.site-footer .footer-about .footer-logo h3 {
    color: #14297b;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
}

.site-footer .footer-about .footer-description {
    line-height: 1.7;
    margin: 0 0 1.375rem;
    font-size: 0.875rem;
    color: #666;
}

.site-footer .footer-about .footer-social {
    display: flex;
    gap: 0.625rem;
}

.site-footer .footer-about .footer-social .social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
}

.site-footer .footer-about .footer-social .social-link svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: #666;
    stroke: #666;
}

.site-footer .footer-about .footer-social .social-link:hover {
    background: #14297b;
    border-color: #14297b;
    transform: translateY(-0.1875rem);
}

.site-footer .footer-about .footer-social .social-link:hover svg {
    fill: white;
    stroke: white;
}

.site-footer .footer-menu-col .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-menu-col .footer-menu li {
    margin-bottom: 0.625rem;
}

.site-footer .footer-menu-col .footer-menu li a {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.1875rem 0;
    position: relative;
    transition: all 0.3s;
    color: #666;
}

.site-footer .footer-menu-col .footer-menu li a:before {
    content: "";
    width: 0;
    height: 0.125rem;
    background: #ff4248;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.site-footer .footer-menu-col .footer-menu li a:hover {
    color: #14297b;
    padding-left: 0.3125rem;
}

.site-footer .footer-menu-col .footer-menu li a:hover:before {
    width: 1.5625rem;
}

.site-footer .footer-important .etbis-qr {
    margin-top: 1.5625rem;
    padding: 1.125rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    text-align: center;
}

.site-footer .footer-important .etbis-qr h5 {
    color: #14297b;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.site-footer .footer-important .etbis-qr .qr-code {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.625rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.site-footer .footer-important .etbis-qr .qr-code img {
    display: block;
    width: 6.25rem;
    height: 6.25rem;
}

.site-footer .footer-important .etbis-qr .qr-info {
    margin: 0;
    font-size: 0.6875rem;
    color: #888;
    line-height: 1.5;
}

.site-footer .footer-bottom {
    border-top: 1px solid #e8e8e8;
    padding: 1.25rem 0;
    background: #f8f9fa;
}

.site-footer .footer-bottom .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9375rem;
}

@media (max-width: 768px) {
    .site-footer .footer-bottom .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.site-footer .footer-bottom .copyright p {
    margin: 0;
    font-size: 0.8125rem;
    color: #888;
}