.t830__panel {
  position: fixed !important;
}

 
	.t706__carticon-imgwrap {
		border-radius: 0px; 
		height: 40px !important; 
		width: 40px !important; 
		box-shadow: 0 0 0 0 !important; 
		background-color: transparent !important; 
	}

/* === КОРЗИНА В ВИДЕ САЙДБАРА === */

/* === КОРЗИНА в виде сайдбара === */
.t706__cartwin {
    display: block !important;         
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%) !important; /* скрыта по умолчанию */

    background-color: #f5f5f5 !important;
    box-shadow: 0 0 10px rgba(0,0,0,.2) !important;
    box-sizing: border-box !important;

    margin: 0 !important;
    border-radius: 0 !important;

    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;

    width: 100vw !important;          /* вся ширина на мобиле */
    max-width: 560px !important;      /* ограничение на десктопе */
    max-height: 100% !important;
    min-height: 100dvh !important;    /* современный vh для мобил */
    min-height: 100vh !important;     /* fallback */
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;

    transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s !important;

    z-index: 999995 !important; /* поверх всего */
}

/* корзина открыта */
.t706__cartwin_showed {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: transform .3s ease, opacity .3s ease, visibility 0s linear 0s !important;
    z-index: 999995 !important;
}

/* убираем затемнение, но сохраняем клик вне */
.t706__cartwinbg {
    display: block !important;
    background: transparent !important; 
    z-index: 999994 !important; /* ниже корзины */
}

/* контент корзины */
.t706__cartwin-content {
    margin: 0 !important;
    height: 100% !important;
    background-color: #f5f5f5 !important;
}

/* иконка закрытия */
.t706__close-icon g {
    fill: #000 !important;
}

.t706__close {
    background: transparent !important;
}