@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;
    }
}

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.custom-cart-page {
    padding: 2.5rem 0 3.75rem;
    background: #f8f9fa;
    min-height: 80vh;
}

@media (max-width: 768px) {
    .custom-cart-page {
        padding: 1.25rem 0 2.5rem;
    }
}

@media (max-width: 576px) {
    .custom-cart-page .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.custom-cart-page .cart-empty {
    text-align: center;
    padding: 3.75rem 1.875rem;
    background: white;
    border-radius: 16px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.5s ease-out;
}

.custom-cart-page .cart-empty .empty-icon {
    margin-bottom: 1.5rem;
}

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

.custom-cart-page .cart-empty h2 {
    font-size: 1.5rem;
    color: #14297b;
    margin: 0 0 0.625rem;
    font-weight: 700;
}

.custom-cart-page .cart-empty p {
    color: #64748b;
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
}

.custom-cart-page .cart-empty .btn-continue-shopping {
    display: inline-block;
    background: #14297b;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    box-shadow: 0 0.25rem 0.75rem rgba(20, 41, 123, 0.2);
}

.custom-cart-page .cart-empty .btn-continue-shopping:hover {
    background: #ff4248;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 66, 72, 0.25);
}

.custom-cart-page .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

.custom-cart-page .cart-header h1 {
    font-size: 1.75rem;
    color: #14297b;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-cart-page .cart-header h1:before {
    content: "🛒";
    font-size: 1.625rem;
}

@media (max-width: 576px) {
    .custom-cart-page .cart-header h1 {
        font-size: 1.375rem;
        gap: 0.5rem;
    }

    .custom-cart-page .cart-header h1:before {
        font-size: 1.25rem;
    }
}

.custom-cart-page .cart-header .cart-count {
    background: #e8ebf3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #14297b;
}

.custom-cart-page .cart-content {
    display: grid;
    grid-template-columns: 1fr 22.5rem;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .custom-cart-page .cart-content {
        grid-template-columns: 1fr;
    }
}

.custom-cart-page .cart-items {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.5s ease-out;
    overflow: hidden;
}

.custom-cart-page .cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background 0.3s;
}

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

.custom-cart-page .cart-item:hover {
    background: #fafafa;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item {
        display: grid;
        grid-template-columns: 4.0625rem 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem 0.75rem;
        padding: 0.875rem;
        align-items: start;
    }
}

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

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-image {
        width: 4.0625rem;
        height: 4.0625rem;
        grid-row: span 2;
        border-radius: 8px;
    }
}

.custom-cart-page .cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.custom-cart-page .cart-item .item-details {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-details {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }
}

.custom-cart-page .cart-item .item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.375rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-title {
        font-size: 0.875rem;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-right: 1.5rem;
    }
}

.custom-cart-page .cart-item .item-title a {
    color: inherit;
    text-decoration: none;
}

.custom-cart-page .cart-item .item-title a:hover {
    color: #14297b;
}

.custom-cart-page .cart-item .item-price {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-price {
        font-size: 0.8125rem;
    }
}

.custom-cart-page .cart-item .item-price .price-unit {
    font-size: 0.75rem;
    color: #94a3b8;
}

.custom-cart-page .cart-item .item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-quantity {
        grid-column: 2;
        justify-self: start;
    }
}

.custom-cart-page .cart-item .item-quantity .quantity-box {
    display: flex;
    align-items: center;
    background: #e8ebf3;
    border-radius: 8px;
    border: 1px solid #d7dcea;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-quantity .quantity-box {
        background: #f1f5f9;
    }
}

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

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-quantity .quantity-box .qty-btn {
        width: 2rem;
        height: 2rem;
    }
}

.custom-cart-page .cart-item .item-quantity .quantity-box .qty-btn svg {
    stroke: #14297b;
    transition: all 0.3s;
}

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

.custom-cart-page .cart-item .item-quantity .quantity-box .qty-btn:hover svg {
    stroke: white;
}

.custom-cart-page .cart-item .item-quantity .quantity-box .qty-btn:active {
    transform: scale(0.95);
}

.custom-cart-page .cart-item .item-quantity .quantity-box .qty-input {
    width: 2.5rem;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #14297b;
    appearance: textfield;
    -moz-appearance: textfield;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-quantity .quantity-box .qty-input {
        width: 2rem;
        font-size: 0.875rem;
    }
}

.custom-cart-page .cart-item .item-quantity .quantity-box .qty-input::-webkit-outer-spin-button,
.custom-cart-page .cart-item .item-quantity .quantity-box .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.custom-cart-page .cart-item .item-quantity .qty-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-quantity .qty-label {
        font-size: 0.6875rem;
    }
}

.custom-cart-page .cart-item .item-total {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ff4248;
    text-align: right;
    flex-shrink: 0;
    min-width: 90px;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-total {
        grid-column: 3;
        grid-row: 2;
        font-size: 1rem;
        min-width: auto;
        align-self: center;
    }
}

.custom-cart-page .cart-item .item-remove {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-remove {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
    }
}

.custom-cart-page .cart-item .item-remove .remove-item {
    width: 2.25rem;
    height: 2.25rem;
    background: #fee2e2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-remove .remove-item {
        width: 1.75rem;
        height: 1.75rem;
        background: transparent;
    }
}

.custom-cart-page .cart-item .item-remove .remove-item svg {
    stroke: #ff4248;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-remove .remove-item svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

.custom-cart-page .cart-item .item-remove .remove-item:hover {
    background: #ff4248;
    transform: rotate(90deg);
}

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

@media (max-width: 768px) {
    .custom-cart-page .cart-item .item-remove .remove-item:hover {
        transform: none;
        background: #fee2e2;
    }

    .custom-cart-page .cart-item .item-remove .remove-item:hover svg {
        stroke: #ff4248;
    }
}

.custom-cart-page .cart-item.updating {
    opacity: 0.6;
    pointer-events: none;
}

.custom-cart-page .cart-item.updating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin: -0.75rem 0 0 -0.75rem;
    border: 3px solid #14297b;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.custom-cart-page .cart-summary {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky;
    top: 6.25rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.6s ease-out;
}

@media (max-width: 991px) {
    .custom-cart-page .cart-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .custom-cart-page .cart-summary {
        padding: 1.25rem;
    }
}

.custom-cart-page .cart-summary h3 {
    font-size: 1.125rem;
    color: #14297b;
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 700;
}

.custom-cart-page .cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #64748b;
    font-size: 0.875rem;
}

.custom-cart-page .cart-summary .summary-row strong {
    color: #14297b;
    font-weight: 700;
    font-size: 0.9375rem;
}

.custom-cart-page .cart-summary .summary-row.coupon-row {
    background: #dcfce7;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.custom-cart-page .cart-summary .summary-row.coupon-row .remove-coupon {
    margin-left: 0.5rem;
    color: #ff4248;
    text-decoration: none;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.custom-cart-page .cart-summary .summary-row.coupon-row .remove-coupon:hover {
    background: #ff4248;
    color: white;
}

.custom-cart-page .cart-summary .coupon-form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

@media (max-width: 576px) {
    .custom-cart-page .cart-summary .coupon-form {
        flex-direction: column;
    }
}

.custom-cart-page .cart-summary .coupon-form .coupon-input {
    flex: 1;
    padding: 0.75rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

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

.custom-cart-page .cart-summary .coupon-form .btn-apply-coupon {
    padding: 0.75rem 1.25rem;
    background: #e8ebf3;
    color: #14297b;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.custom-cart-page .cart-summary .coupon-form .btn-apply-coupon:hover {
    background: #14297b;
    color: white;
}

.custom-cart-page .cart-summary .summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #e8ebf3;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #14297b;
}

.custom-cart-page .cart-summary .btn-update-cart {
    width: 100%;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
}

.custom-cart-page .cart-summary .btn-update-cart:hover {
    background: #e2e8f0;
    color: #14297b;
}

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

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

.custom-cart-page .cart-summary .btn-checkout.disabled {
    background: #cbd5e1 !important;
    cursor: not-allowed !important;
    opacity: 0.8;
    box-shadow: none !important;
}

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

.custom-cart-page .cart-summary .btn-checkout.disabled svg {
    animation: pulse 1.5s infinite;
}

.custom-cart-page .cart-summary .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;
}

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

.custom-cart-page .cart-summary .minimum-order-notice.complete .min-order-icon {
    background: #10b981;
}

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

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

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

.custom-cart-page .cart-summary .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;
}

.custom-cart-page .cart-summary .minimum-order-notice .min-order-icon svg {
    stroke: white;
}

.custom-cart-page .cart-summary .minimum-order-notice .min-order-text {
    font-size: 0.8125rem;
    color: #92400e;
}

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

.custom-cart-page .cart-summary .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);
}

.custom-cart-page .cart-summary .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);
}

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

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

@keyframes pulse {

    .custom-cart-page .cart-summary 0%,
    .custom-cart-page .cart-summary 100% {
        opacity: 1;
    }

    .custom-cart-page .cart-summary 50% {
        opacity: 0.5;
    }
}

.custom-cart-page .cart-summary .btn-continue {
    display: block;
    text-align: center;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s;
    border-radius: 8px;
    font-size: 0.875rem;
}

.custom-cart-page .cart-summary .btn-continue:hover {
    color: #14297b;
    background: #f1f5f9;
}

.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;
}